最終更新:2015-10-27 (火) 17:06:35 (3112d)  

Linux/sys/kernel/debug/dynamic_debug?
Linux/sys/kernel/debug/dynamic_debug/control
Top / Linux / sys / kernel / debug / dynamic_debug / control

filename:lineno [module]function flags format

パラメータ

  • filename : source file of the debug statement
  • lineno : line number of the debug statement
  • module : module that contains the debug statement
  • function : function that contains the debug statement
  • flags : '=p' means the line is turned 'on' for printing
  • format : the format used for the debug statement

  • // enable the message at line 1603 of file svcsock.c
    nullarbor:~ # echo -n 'file svcsock.c line 1603 +p' > <debugfs>/dynamic_debug/control
    
    // enable all the messages in file svcsock.c
    nullarbor:~ # echo -n 'file svcsock.c +p' > <debugfs>/dynamic_debug/control
    
    // enable all the messages in the NFS server module
    nullarbor:~ # echo -n 'module nfsd +p' > <debugfs>/dynamic_debug/control
    
    // enable all 12 messages in the function svc_process()
    nullarbor:~ # echo -n 'func svc_process +p' > <debugfs>/dynamic_debug/control
    
    // disable all 12 messages in the function svc_process()
    nullarbor:~ # echo -n 'func svc_process -p' > <debugfs>/dynamic_debug/control

フラグ

  • - フラグの削除
  • + フラグの追加
  • = フラグの設定
    _デフォルト
    penables the pr_debug() callsite.
    fInclude the function name in the printed message
    lInclude line number in the printed message
    mInclude module name in the printed message
    tInclude thread ID in messages not generated from interrupt context

cat

  • Ubuntu 14.04.3
    # filename:lineno [module]function flags format
    init/main.c:745 [main]initcall_blacklisted =p "initcall %s blacklisted\012"
    init/main.c:721 [main]initcall_blacklist =p "blacklisting initcall %s\012"
    init/initramfs.c:483 [initramfs]unpack_to_rootfs =_ "Detected %s compressed data\012"
    arch/x86/kernel/tboot.c:104 [tboot]tboot_probe =_ "tboot_size: 0x%x\012"
    arch/x86/kernel/tboot.c:103 [tboot]tboot_probe =_ "tboot_base: 0x%08x\012"
    arch/x86/kernel/tboot.c:102 [tboot]tboot_probe =_ "shutdown_entry: 0x%x\012"
    arch/x86/kernel/tboot.c:101 [tboot]tboot_probe =_ "log_addr: 0x%08x\012"
    arch/x86/kernel/tboot.c:100 [tboot]tboot_probe =_ "version: %d\012"
    arch/x86/kernel/cpu/common.c:1313 [common]cpu_init =_ "Initializing CPU#%d\012"
    arch/x86/kernel/cpu/perf_event_amd_iommu.c:370 [perf_event_amd_iommu]perf_iommu_add =_ "perf: amd_iommu:perf_iommu_add\012"
    arch/x86/kernel/cpu/perf_event_amd_iommu.c:391 [perf_event_amd_iommu]perf_iommu_del =_ "perf: amd_iommu:perf_iommu_del\012"
    arch/x86/kernel/cpu/perf_event_amd_iommu.c:296 [perf_event_amd_iommu]perf_iommu_start =_ "perf: amd_iommu:perf_iommu_start\012"
    arch/x86/kernel/cpu/perf_event_amd_iommu.c:347 [perf_event_amd_iommu]perf_iommu_stop =_ "perf: amd_iommu:perf_iommu_stop\012"
    arch/x86/kernel/cpu/perf_event_amd_iommu.c:321 [perf_event_amd_iommu]perf_iommu_read =_ "perf: amd_iommu:perf_iommu_read\012"
    arch/x86/kernel/cpu/mtrr/main.c:484 [main]mtrr_del_page =p "mtrr: no MTRR for %lx000,%lx000 found\012"
    arch/x86/kernel/cpu/mtrr/main.c:393 [main]mtrr_check =p "mtrr: size: 0x%lx  base: 0x%lx\012"
    arch/x86/kernel/cpu/mtrr/generic.c:305 [generic]print_fixed_last =p "  %05X-%05X %s\012"
    arch/x86/kernel/cpu/mtrr/generic.c:381 [generic]print_mtrr_state =p "TOM2: %016llx aka %lldM\012"
    arch/x86/kernel/cpu/mtrr/generic.c:378 [generic]print_mtrr_state =p "  %u disabled\012"
    arch/x86/kernel/cpu/mtrr/generic.c:376 [generic]print_mtrr_state =p "  %u base %0*X%05X000 mask %0*X%05X000 %s\012"
    arch/x86/kernel/cpu/mtrr/generic.c:363 [generic]print_mtrr_state =p "MTRR variable ranges %sabled:\012"
    arch/x86/kernel/cpu/mtrr/generic.c:350 [generic]print_mtrr_state =p "MTRR fixed ranges %sabled:\012"
    arch/x86/kernel/cpu/mtrr/generic.c:347 [generic]print_mtrr_state =p "MTRR default type: %s\012"
    arch/x86/kernel/cpu/microcode/core.c:426 [microcode]mc_device_add =_ "CPU%d added\012"
    arch/x86/kernel/cpu/microcode/core.c:445 [microcode]mc_device_remove =_ "CPU%d removed\012"
    arch/x86/kernel/cpu/microcode/core.c:402 [microcode]microcode_init_cpu =_ "CPU%d updated upon init\012"
    arch/x86/kernel/cpu/microcode/core.c:375 [microcode]microcode_resume_cpu =_ "CPU%d updated upon resume\012"
    arch/x86/kernel/cpu/microcode/core.c:501 [microcode]mc_cpu_callback =_ "CPU%d removed\012"
    arch/x86/kernel/cpu/microcode/core.c:487 [microcode]mc_cpu_callback =_ "CPU%d added\012"
    arch/x86/kernel/cpu/microcode/intel.c:259 [microcode]generic_load_microcode =_ "CPU%d found a matching microcode update with version 0x%x (current=0x%x)\012"
    arch/x86/kernel/cpu/microcode/intel.c:282 [microcode]request_microcode_fw =_ "data file %s load failed\012"
    arch/x86/kernel/cpu/microcode/amd.c:437 [microcode]request_microcode_amd =_ "failed to load file %s\012"
    arch/x86/kernel/cpu/microcode/amd.c:336 [microcode]verify_and_add_patch =_ "%s: Added patch_id: 0x%08x, proc_id: 0x%04x\012"
    arch/x86/kernel/acpi/boot.c:1087 [boot]mp_config_acpi_legacy_irqs =_ "Bus #%d is ISA\012"
    arch/x86/kernel/smpboot.c:443 [smpboot]impress_friends =_ "Before bogocount - setting activated=1\012"
    arch/x86/kernel/smpboot.c:434 [smpboot]impress_friends =_ "Before bogomips\012"
    arch/x86/kernel/smpboot.c:1176 [smpboot]native_smp_cpus_done =_ "Boot done\012"
    arch/x86/kernel/smpboot.c:628 [smpboot]wakeup_secondary_cpu_via_init =_ "After Startup\012"
    arch/x86/kernel/smpboot.c:615 [smpboot]wakeup_secondary_cpu_via_init =_ "Waiting for send to finish...\012"
    arch/x86/kernel/smpboot.c:613 [smpboot]wakeup_secondary_cpu_via_init =_ "Startup point 1\012"
    arch/x86/kernel/smpboot.c:596 [smpboot]wakeup_secondary_cpu_via_init =_ "After apic_write\012"
    arch/x86/kernel/smpboot.c:592 [smpboot]wakeup_secondary_cpu_via_init =_ "Sending STARTUP #%d\012"
    arch/x86/kernel/smpboot.c:589 [smpboot]wakeup_secondary_cpu_via_init =_ "#startup loops: %d\012"
    arch/x86/kernel/smpboot.c:562 [smpboot]wakeup_secondary_cpu_via_init =_ "Waiting for send to finish...\012"
    arch/x86/kernel/smpboot.c:556 [smpboot]wakeup_secondary_cpu_via_init =_ "Deasserting INIT\012"
    arch/x86/kernel/smpboot.c:551 [smpboot]wakeup_secondary_cpu_via_init =_ "Waiting for send to finish...\012"
    arch/x86/kernel/smpboot.c:540 [smpboot]wakeup_secondary_cpu_via_init =_ "Asserting INIT\012"
    arch/x86/include/asm/smpboot_hooks.h:25 [smpboot]smpboot_setup_warm_reset_vector =_ "3.\012"
    arch/x86/include/asm/smpboot_hooks.h:22 [smpboot]smpboot_setup_warm_reset_vector =_ "2.\012"
    arch/x86/include/asm/smpboot_hooks.h:19 [smpboot]smpboot_setup_warm_reset_vector =_ "1.\012"
    arch/x86/kernel/smpboot.c:161 [smpboot]smp_callin =_ "Stack at about %p\012"
    arch/x86/kernel/smpboot.c:797 [smpboot]do_boot_cpu =_ "Setting warm reset code and vector.\012"
    arch/x86/kernel/smpboot.c:906 [smpboot]native_cpu_up =_ "do_boot_cpu %d Already started\012"
    arch/x86/kernel/smpboot.c:893 [smpboot]native_cpu_up =_ "++++++++++++++++++++=_---CPU UP  %u\012"
    arch/x86/kernel/smpboot.c:513 [smpboot]wakeup_secondary_cpu_via_nmi =_ "NMI sent\012"
    arch/x86/kernel/smpboot.c:500 [smpboot]wakeup_secondary_cpu_via_nmi =_ "Waiting for send to finish...\012"
    arch/x86/kernel/tsc_sync.c:169 [tsc_sync]check_tsc_sync_source =_ "TSC synchronization [CPU#%d -> CPU#%d]: passed\012"
    arch/x86/kernel/setup_percpu.c:116 [setup_percpu]pcpu_alloc_bootmem =_ "per cpu data for cpu%d %lu bytes on node%d at %016lx\012"
    arch/x86/kernel/setup_percpu.c:111 [setup_percpu]pcpu_alloc_bootmem =_ "per cpu data for cpu%d %lu bytes at %016lx\012"
    arch/x86/kernel/apic/apic.c:1579 [apic]enable_IR =_ "intr-remapping not supported\012"
    arch/x86/kernel/apic/vector.c:631 [vector]print_local_APIC =_ "... APIC EILVT%d: %08x\012"
    arch/x86/kernel/apic/vector.c:628 [vector]print_local_APIC =_ "... APIC ECTRL: %08x\012"
    arch/x86/kernel/apic/vector.c:626 [vector]print_local_APIC =_ "... APIC EFEAT: %08x\012"
    arch/x86/kernel/apic/vector.c:621 [vector]print_local_APIC =_ "... APIC TDCR: %08x\012"
    arch/x86/kernel/apic/vector.c:619 [vector]print_local_APIC =_ "... APIC TMCCT: %08x\012"
    arch/x86/kernel/apic/vector.c:617 [vector]print_local_APIC =_ "... APIC TMICT: %08x\012"
    arch/x86/kernel/apic/vector.c:613 [vector]print_local_APIC =_ "... APIC LVTERR: %08x\012"
    arch/x86/kernel/apic/vector.c:608 [vector]print_local_APIC =_ "... APIC LVT1: %08x\012"
    arch/x86/kernel/apic/vector.c:606 [vector]print_local_APIC =_ "... APIC LVT0: %08x\012"
    arch/x86/kernel/apic/vector.c:603 [vector]print_local_APIC =_ "... APIC LVTPC: %08x\012"
    arch/x86/kernel/apic/vector.c:598 [vector]print_local_APIC =_ "... APIC LVTT: %08x\012"
    arch/x86/kernel/apic/vector.c:595 [vector]print_local_APIC =_ "... APIC ICR2: %08x\012"
    arch/x86/kernel/apic/vector.c:594 [vector]print_local_APIC =_ "... APIC ICR: %08x\012"
    arch/x86/kernel/apic/vector.c:590 [vector]print_local_APIC =_ "... APIC ESR: %08x\012"
    arch/x86/kernel/apic/vector.c:580 [vector]print_local_APIC =_ "... APIC IRR field:\012"
    arch/x86/kernel/apic/vector.c:578 [vector]print_local_APIC =_ "... APIC TMR field:\012"
    arch/x86/kernel/apic/vector.c:576 [vector]print_local_APIC =_ "... APIC ISR field:\012"
    arch/x86/kernel/apic/vector.c:574 [vector]print_local_APIC =_ "... APIC SPIV: %08x\012"
    arch/x86/kernel/apic/vector.c:571 [vector]print_local_APIC =_ "... APIC DFR: %08x\012"
    arch/x86/kernel/apic/vector.c:568 [vector]print_local_APIC =_ "... APIC LDR: %08x\012"
    arch/x86/kernel/apic/vector.c:564 [vector]print_local_APIC =_ "... APIC RRR: %08x\012"
    arch/x86/kernel/apic/vector.c:555 [vector]print_local_APIC =_ "... APIC PROCPRI: %08x\012"
    arch/x86/kernel/apic/vector.c:552 [vector]print_local_APIC =_ "... APIC ARBPRI: %08x (%02x)\012"
    arch/x86/kernel/apic/vector.c:545 [vector]print_local_APIC =_ "... APIC TASKPRI: %08x (%02x)\012"
    arch/x86/kernel/apic/vector.c:536 [vector]print_local_APIC =_ "printing local APIC contents on CPU#%d/%d:\012"
    arch/x86/kernel/apic/vector.c:682 [vector]print_PIC =_ "... PIC ELCR: %04x\012"
    arch/x86/kernel/apic/vector.c:679 [vector]print_PIC =_ "... PIC  ISR: %04x\012"
    arch/x86/kernel/apic/vector.c:669 [vector]print_PIC =_ "... PIC  IRR: %04x\012"
    arch/x86/kernel/apic/vector.c:666 [vector]print_PIC =_ "... PIC  IMR: %04x\012"
    arch/x86/kernel/apic/vector.c:661 [vector]print_PIC =_ "\012printing PIC contents\012"
    arch/x86/kernel/apic/io_apic.c:1381 [io_apic]intel_ir_io_apic_print_entries =_ " %02x %04X "
    arch/x86/kernel/apic/io_apic.c:1371 [io_apic]intel_ir_io_apic_print_entries =_ " NR Indx Fmt Mask Trig IRR Pol Stat Indx2 Zero Vect:\012"
    arch/x86/kernel/apic/io_apic.c:1352 [io_apic]native_io_apic_print_entries =_ " %02x %02X  "
    arch/x86/kernel/apic/io_apic.c:1345 [io_apic]native_io_apic_print_entries =_ " NR Dst Mask Trig IRR Pol Stat Dmod Deli Vect:\012"
    arch/x86/kernel/apic/msi.c:141 [msi]setup_msi_irq =_ "irq %d for MSI/MSI-X\012"
    arch/x86/kernel/apic/htirq.c:104 [htirq]arch_setup_ht_irq =_ "irq %d for HT\012"
    arch/x86/kernel/machine_kexec_64.c:478 [machine_kexec_64]arch_kexec_apply_relocations_add =_ "Symbol: %s info: %02x shndx: %02x value=%llx size: %llx\012"
    arch/x86/kernel/machine_kexec_64.c:427 [machine_kexec_64]arch_kexec_apply_relocations_add =_ "Applying relocate section %u to %u\012"
    arch/x86/kernel/machine_kexec_64.c:390 [machine_kexec_64]arch_kexec_kernel_verify_sig =_ "kernel loader does not support signature verification."
    arch/x86/kernel/crash.c:401 [crash]prepare_elf64_ram_headers_callback =_ "Crash PT_LOAD elf header. phdr=%p vaddr=0x%llx, paddr=0x%llx, sz=0x%llx e_phnum=%d p_offset=0x%llx\012"
    arch/x86/kernel/crash.c:697 [crash]crash_load_segments =_ "Loaded ELF headers at 0x%lx bufsz=0x%lx memsz=0x%lx\012"
    arch/x86/kernel/crash.c:678 [crash]crash_load_segments =_ "Loaded backup region at 0x%lx backup_start=0x%lx memsz=0x%lx\012"
    arch/x86/kernel/kexec-bzimage64.c:323 [kexec_bzimage64]bzImage64_probe =_ "It's a relocatable bzImage64\012"
    arch/x86/kernel/kexec-bzimage64.c:318 [kexec_bzimage64]bzImage64_probe =_ "EFI is 32 bit. Can't load kernel above 4G.\012"
    arch/x86/kernel/kexec-bzimage64.c:86 [kexec_bzimage64]setup_cmdline =_ "Final command line is: %s\012"
    arch/x86/kernel/kexec-bzimage64.c:457 [kexec_bzimage64]bzImage64_load =_ "Loaded initrd at 0x%lx bufsz=0x%lx memsz=0x%lx\012"
    arch/x86/kernel/kexec-bzimage64.c:446 [kexec_bzimage64]bzImage64_load =_ "Loaded 64bit kernel at 0x%lx bufsz=0x%lx memsz=0x%lx\012"
    arch/x86/kernel/kexec-bzimage64.c:430 [kexec_bzimage64]bzImage64_load =_ "Loaded boot_param, command line and misc at 0x%lx bufsz=0x%lx memsz=0x%lx\012"
    arch/x86/kernel/kexec-bzimage64.c:392 [kexec_bzimage64]bzImage64_load =_ "Loaded purgatory at 0x%lx\012"
    arch/x86/kernel/kexec-bzimage64.c:370 [kexec_bzimage64]bzImage64_load =_ "Appending elfcorehdr=<addr> to command line exceeds maximum allowed length\012"
    arch/x86/mm/init_64.c:1113 [init_64]set_kernel_text_ro =_ "Set kernel text: %lx - %lx for read only\012"
    arch/x86/mm/init_64.c:1094 [init_64]set_kernel_text_rw =_ "Set kernel text: %lx - %lx for read write\012"
    arch/x86/mm/init_64.c:306 [init_64]set_pte_vaddr =_ "set_pte_vaddr %lx to %lx\012"
    arch/x86/mm/init_64.c:242 [init_64]spp_getpage =_ "spp_getpage %p\012"
    arch/x86/mm/kmmio.c:249 [mmiotrace]kmmio_handler =_ "secondary hit for 0x%08lx CPU %d.\012"
    arch/x86/mm/mmio-mod.c:305 [mmiotrace]iounmap_trace_core =p "Unmapping %p.\012"
    arch/x86/mm/mmio-mod.c:287 [mmiotrace]mmiotrace_ioremap =p "ioremap_*(0x%llx, 0x%lx) = %p\012"
    arch/x86/mm/numa.c:128 [numa]setup_node_to_cpumask_map =_ "Node to cpumask map for %d nodes\012"
    kernel/params.c:134 [params]parse_one =_ "Unknown argument '%s'\012"
    kernel/params.c:130 [params]parse_one =_ "doing %s: %s='%s'\012"
    kernel/params.c:120 [params]parse_one =_ "handling %s with %p\012"
    kernel/params.c:205 [params]parse_args =_ "doing %s, parsing ARGS: '%s'\012"
    kernel/async.c:300 [async]async_synchronize_cookie_domain =_ "async_continuing @ %i after %lli usec\012"
    kernel/async.c:288 [async]async_synchronize_cookie_domain =_ "async_waiting @ %i\012"
    kernel/async.c:130 [async]async_run_entry_fn =_ "initcall %lli_%pF returned 0 after %lld usecs\012"
    kernel/async.c:120 [async]async_run_entry_fn =_ "calling  %lli_%pF @ %i\012"
    kernel/power/suspend.c:468 [suspend]enter_state =p "PM: Finishing wakeup.\012"
    kernel/power/suspend.c:462 [suspend]enter_state =p "PM: Entering %s sleep\012"
    kernel/power/suspend.c:453 [suspend]enter_state =p "PM: Preparing system for %s sleep\012"
    kernel/power/hibernate.c:983 [hibernate]disk_store =p "PM: Hibernation mode set to '%s'\012"
    kernel/power/hibernate.c:861 [hibernate]software_resume =p "PM: Hibernation image not present or could not be loaded.\012"
    kernel/power/hibernate.c:836 [hibernate]software_resume =p "PM: Loading hibernation image.\012"
    kernel/power/hibernate.c:831 [hibernate]software_resume =p "PM: Preparing processes for restore.\012"
    kernel/power/hibernate.c:814 [hibernate]software_resume =p "PM: Looking for hibernation image.\012"
    kernel/power/hibernate.c:812 [hibernate]software_resume =p "PM: Hibernation image partition %d:%d present\012"
    kernel/power/hibernate.c:769 [hibernate]software_resume =p "PM: Checking hibernation image partition %s\012"
    kernel/power/hibernate.c:702 [hibernate]hibernate =p "PM: Image restored successfully.\012"
    kernel/power/hibernate.c:694 [hibernate]hibernate =p "PM: writing image.\012"
    kernel/power/hibernate.c:650 [hibernate]hibernate =p "PM: Hibernation not available.\012"
    kernel/power/snapshot.c:1744 [snapshot]enough_free_mem =p "PM: Normal pages needed: %u + %u, available pages: %u\012"
    kernel/power/snapshot.c:1032 [snapshot]free_basic_memory_bitmaps =p "PM: Basic memory bitmaps freed\012"
    kernel/power/snapshot.c:943 [snapshot]mark_nosave_pages =p "PM: Marking nosave pages: [mem %#010llx-%#010llx]\012"
    kernel/power/snapshot.c:996 [snapshot]create_basic_memory_bitmaps =p "PM: Basic memory bitmaps created\012"
    kernel/power/swap.c:1469 [swap]swsusp_close =p "PM: Image device not initialised\012"
    kernel/power/swap.c:1457 [swap]swsusp_check =p "PM: Image not found (code %d)\012"
    kernel/power/swap.c:1451 [swap]swsusp_check =p "PM: Image signature found, resuming\012"
    kernel/power/swap.c:1416 [swap]swsusp_read =p "PM: Error %d resuming\012"
    kernel/power/swap.c:1414 [swap]swsusp_read =p "PM: Image successfully loaded\012"
    kernel/power/swap.c:798 [swap]enough_swap =p "PM: Free swap pages: %u\012"
    kernel/printk/printk.c:959 [printk]boot_delay_setup =_ "boot_delay: %u, preset_lpj: %ld, lpj: %lu, HZ: %d, loops_per_msec: %llu\012"
    kernel/irq/manage.c:592 [manage]__irq_set_trigger =_ "No set_type function for IRQ %d (%s)\012"
    kernel/irq/irqdomain.c:428 [irqdomain]irq_create_mapping =_ "irq %lu on domain %s mapped to virtual irq %u\012"
    kernel/irq/irqdomain.c:418 [irqdomain]irq_create_mapping =_ "-> virq allocation failed\012"
    kernel/irq/irqdomain.c:410 [irqdomain]irq_create_mapping =_ "-> existing mapping on virq %d\012"
    kernel/irq/irqdomain.c:405 [irqdomain]irq_create_mapping =_ "-> using domain @%p\012"
    kernel/irq/irqdomain.c:396 [irqdomain]irq_create_mapping =_ "irq_create_mapping(0x%p, 0x%lx)\012"
    kernel/irq/irqdomain.c:370 [irqdomain]irq_create_direct_mapping =_ "create_direct obtained virq %d\012"
    kernel/irq/irqdomain.c:361 [irqdomain]irq_create_direct_mapping =_ "create_direct virq allocation failed\012"
    kernel/irq/irqdomain.c:334 [irqdomain]irq_domain_associate_many =_ "%s(%s, irqbase=%i, hwbase=%i, count=%i)\012"
    kernel/irq/irqdomain.c:231 [irqdomain]irq_set_default_host =_ "Default domain set to @0x%p\012"
    kernel/irq/irqdomain.c:103 [irqdomain]irq_domain_remove =_ "Removed domain %s\012"
    kernel/irq/irqdomain.c:69 [irqdomain]__irq_domain_add =_ "Added domain %s\012"
    kernel/freezer.c:84 [freezer]__refrigerator =_ "%s left refrigerator\012"
    kernel/freezer.c:66 [freezer]__refrigerator =_ "%s entered refrigerator\012"
    kernel/module.c:3419 [module]SYSC_finit_module =_ "finit_module: fd=%d, uargs=%p, flags=%i\012"
    kernel/module.c:1956 [module]simplify_symbols =_ "Absolute symbol: 0x%08lx\012"
    kernel/module.c:1947 [module]simplify_symbols =_ "Common symbol: %s\012"
    kernel/module.c:2832 [module]move_module =_ "\0110x%lx %s\012"
    kernel/module.c:2813 [module]move_module =_ "final section addresses:\012"
    kernel/module.c:2315 [module]layout_symtab =_ "\011%s\012"
    kernel/module.c:2290 [module]layout_symtab =_ "\011%s\012"
    kernel/module.c:2101 [module]layout_sections =_ "\011%s\012"
    kernel/module.c:2088 [module]layout_sections =_ "Init section allocation order:\012"
    kernel/module.c:2071 [module]layout_sections =_ "\011%s\012"
    kernel/module.c:2059 [module]layout_sections =_ "Core section allocation order:\012"
    kernel/module.c:1153 [module]check_version =_ "Found checksum %lX vs module %lX\012"
    kernel/module.c:3401 [module]SYSC_init_module =_ "init_module: umod=%p, len=%lu, uargs=%p\012"
    kernel/module.c:721 [module]module_unload_free =_ "%s unusing %s\012"
    kernel/module.c:825 [module]SYSC_delete_module =_ "%s already dying\012"
    kernel/module.c:677 [module]add_module_usage =_ "Allocating new usage for %s.\012"
    kernel/module.c:662 [module]already_uses =_ "%s does not use %s!\012"
    kernel/module.c:658 [module]already_uses =_ "%s uses %s!\012"
    kernel/module.c:449 [module]find_symbol =_ "Failed to find symbol %s\012"
    kernel/module_signing.c:159 [module_signing]request_asymmetric_key =_ "Look up: \042%s\042\012"
    kernel/kexec.c:2610 [kexec]kexec_purgatory_find_symbol =_ "Symbol: %s has bad section index %d.\012"
    kernel/kexec.c:513 [kexec]kimage_file_prepare_segments =_ "kernel signature verification successful.\012"
    kernel/kexec.c:510 [kexec]kimage_file_prepare_segments =_ "kernel signature verification failed.\012"
    kernel/kexec.c:1439 [kexec]SYSC_kexec_file_load =_ "Loading segment %d: buf=0x%p bufsz=0x%zx mem=0x%lx memsz=0x%zx\012"
    kernel/trace/trace_mmiotrace.c:39 [trace_mmiotrace]mmio_trace_init =p "in %s\012"
    kernel/trace/trace_mmiotrace.c:49 [trace_mmiotrace]mmio_trace_reset =p "in %s\012"
    kernel/trace/trace_mmiotrace.c:58 [trace_mmiotrace]mmio_trace_start =p "in %s\012"
    kernel/trace/trace_syscalls.c:471 [trace_syscalls]init_syscall_trace =_ "syscall %s metadata not mapped, disabling ftrace event\012"
    mm/swapfile.c:679 [swapfile]get_swap_page =_ "scan_swap_map of si %d failed to find offset\012"
    mm/mempolicy.c:2218 [mempolicy]sp_insert =_ "inserting %lx-%lx: %d\012"
    mm/mempolicy.c:2335 [mempolicy]sp_delete =_ "deleting %lx-l%lx\012"
    mm/mempolicy.c:2495 [mempolicy]mpol_set_shared_policy =_ "set_shared_policy %lx sz %lu %d %d %lx\012"
    mm/mempolicy.c:713 [mempolicy]vma_replace_policy =_ "vma %lx-%lx/%lx vm_ops %p vm_file %p set_policy %p\012"
    mm/mempolicy.c:259 [mempolicy]mpol_new =_ "setting mode %d flags %d nodes[0] %lx\012"
    mm/mempolicy.c:1223 [mempolicy]do_mbind =_ "mbind %lx-%lx mode:%d flags:%d nodes:%lx\012"
    mm/memory_hotplug.c:141 [memory_hotplug]register_memory_resource =_ "System RAM resource %pR cannot be added\012"
    mm/vmpressure.c:128 [vmpressure]vmpressure_calc_level =_ "%s: %3lu  (s: %lu  r: %lu)\012"
    mm/cma.c:439 [cma]cma_release =_ "%s(page %p)\012"
    mm/cma.c:418 [cma]cma_alloc =_ "%s(): returned %p\012"
    mm/cma.c:413 [cma]cma_alloc =_ "%s(): memory range at %p is busy, retrying\012"
    mm/cma.c:372 [cma]cma_alloc =_ "%s(cma %p, count %d, align %d)\012"
    mm/cma.c:248 [cma]cma_declare_contiguous =_ "%s(size %pa, base %pa, limit %pa alignment %pa)\012"
    fs/notify/fsnotify.c:175 [fsnotify]send_to_group =_ "%s: group=%p to_tell=%p mask=%x inode_mark=%p inode_test_mask=%x vfsmount_mark=%p vfsmount_test_mask=%x data=%p data_is=%d cookie=%d\012"
    fs/notify/notification.c:153 [notification]fsnotify_remove_first_event =_ "%s: group=%p\012"
    fs/notify/notification.c:95 [notification]fsnotify_add_event =_ "%s: group=%p event=%p\012"
    fs/notify/inotify/inotify_fsnotify.c:94 [inotify_fsnotify]inotify_handle_event =_ "%s: group=%p inode=%p mask=%x\012"
    fs/notify/inotify/inotify_user.c:183 [inotify_user]copy_event_to_user =_ "%s: group=%p event=%p\012"
    fs/notify/inotify/inotify_user.c:154 [inotify_user]get_one_event =_ "%s: group=%p event=%p\012"
    fs/notify/inotify/inotify_user.c:241 [inotify_user]inotify_read =_ "%s: group=%p kevent=%p\012"
    fs/notify/inotify/inotify_user.c:299 [inotify_user]inotify_ioctl =_ "%s: group=%p cmd=%u\012"
    fs/notify/inotify/inotify_user.c:279 [inotify_user]inotify_release =_ "%s: group=%p\012"
    fs/notify/fanotify/fanotify.c:95 [fanotify]fanotify_get_response =_ "%s: group=%p event=%p about to return ret=%d\012"
    fs/notify/fanotify/fanotify.c:68 [fanotify]fanotify_get_response =_ "%s: group=%p event=%p\012"
    fs/notify/fanotify/fanotify.c:111 [fanotify]fanotify_should_send_event =_ "%s: inode_mark=%p vfsmnt_mark=%p mask=%x data=%p data_type=%d\012"
    fs/notify/fanotify/fanotify.c:19 [fanotify]should_merge =_ "%s: old=%p new=%p\012"
    fs/notify/fanotify/fanotify.c:36 [fanotify]fanotify_merge =_ "%s: list=%p event=%p\012"
    fs/notify/fanotify/fanotify.c:213 [fanotify]fanotify_handle_event =_ "%s: group=%p inode=%p mask=%x\012"
    fs/notify/fanotify/fanotify_user.c:649 [fanotify_user]fanotify_add_inode_mark =_ "%s: group=%p inode=%p\012"
    fs/notify/fanotify/fanotify_user.c:445 [fanotify_user]fanotify_find_path =_ "%s: dfd=%d filename=%p flags=%x\012"
    fs/notify/fanotify/fanotify_user.c:803 [fanotify_user]SYSC_fanotify_mark =_ "%s: fanotify_fd=%d flags=%x dfd=%d pathname=%p mask=%llx\012"
    fs/notify/fanotify/fanotify_user.c:79 [fanotify_user]create_fd =_ "%s: group=%p event=%p\012"
    fs/notify/fanotify/fanotify_user.c:123 [fanotify_user]fill_event_metadata =_ "%s: group=%p metadata=%p event=%p\012"
    fs/notify/fanotify/fanotify_user.c:211 [fanotify_user]copy_event_to_user =_ "%s: group=%p event=%p\012"
    fs/notify/fanotify/fanotify_user.c:59 [fanotify_user]get_one_event =_ "%s: group=%p count=%zd\012"
    fs/notify/fanotify/fanotify_user.c:267 [fanotify_user]fanotify_read =_ "%s: group=%p\012"
    fs/notify/fanotify/fanotify_user.c:162 [fanotify_user]dequeue_event =_ "%s: found return_re=%p\012"
    fs/notify/fanotify/fanotify_user.c:175 [fanotify_user]process_access_response =_ "%s: group=%p fd=%d response=%d\012"
    fs/notify/fanotify/fanotify_user.c:340 [fanotify_user]fanotify_write =_ "%s: group=%p count=%zu\012"
    fs/notify/fanotify/fanotify_user.c:374 [fanotify_user]fanotify_release =_ "%s: found group=%p event=%p\012"
    fs/notify/fanotify/fanotify_user.c:689 [fanotify_user]SYSC_fanotify_init =_ "%s: flags=%d event_f_flags=%d\012"
    fs/aio.c:1212 [aio]aio_read_events_ring =_ "%li  h%u t%u\012"
    fs/aio.c:1167 [aio]aio_read_events_ring =_ "h%u t%u m%u\012"
    fs/aio.c:1494 [aio]aio_run_iocb =_ "EINVAL: no operation provided\012"
    fs/aio.c:1565 [aio]io_submit_one =_ "EFAULT: aio_key\012"
    fs/aio.c:1534 [aio]io_submit_one =_ "EINVAL: io_submit: overflow check\012"
    fs/aio.c:1524 [aio]io_submit_one =_ "EINVAL: reserve field set\012"
    fs/aio.c:1607 [aio]do_io_submit =_ "EINVAL: invalid context id\012"
    fs/aio.c:1352 [aio]SYSC_io_destroy =_ "EINVAL: io_destroy: invalid context id\012"
    fs/aio.c:273 [aio]aio_free_ring =_ "pid(%d) [%d] page->count=%d\012"
    fs/aio.c:473 [aio]aio_setup_ring =_ "mmap address: 0x%08lx\012"
    fs/aio.c:460 [aio]aio_setup_ring =_ "attempting mmap of %lu bytes\012"
    fs/aio.c:446 [aio]aio_setup_ring =_ "pid(%d) page[%d]->count=%d\012"
    fs/aio.c:537 [aio]free_ioctx =_ "freeing %p\012"
    fs/aio.c:753 [aio]ioctx_alloc =_ "error allocating ioctx %d\012"
    fs/aio.c:737 [aio]ioctx_alloc =_ "allocated ioctx %p[%ld]: mm=%p mask=0x%x\012"
    fs/aio.c:673 [aio]ioctx_alloc =_ "ENOMEM: nr_events too high\012"
    fs/aio.c:1305 [aio]SYSC_io_setup =_ "EINVAL: io_setup: ctx %lu nr_events %u\012"
    fs/aio.c:1106 [aio]aio_complete =_ "added to ring %p at [%u]\012"
    fs/aio.c:1086 [aio]aio_complete =_ "%p[%u]: %p: %p %Lx %lx %lx\012"
    fs/aio.c:239 [aio]aio_setup =_ "sizeof(struct page) = %zu\012"
    fs/kernfs/mount.c:90 [mount]kernfs_fill_super =_ "%s: could not get root dentry!\012"
    fs/kernfs/mount.c:83 [mount]kernfs_fill_super =_ "kernfs: could not get root inode\012"
    fs/kernfs/dir.c:1001 [dir]__kernfs_remove =_ "kernfs %s: removing\012"
    fs/debugfs/inode.c:321 [debugfs]__create_file =_ "debugfs: creating file '%s'\012"
    security/capability.c:1135 [capability]security_fixup_ops =_ "Had to override the audit_rule_free security operation with the default.\012"
    security/capability.c:1134 [capability]security_fixup_ops =_ "Had to override the audit_rule_match security operation with the default.\012"
    security/capability.c:1133 [capability]security_fixup_ops =_ "Had to override the audit_rule_known security operation with the default.\012"
    security/capability.c:1132 [capability]security_fixup_ops =_ "Had to override the audit_rule_init security operation with the default.\012"
    security/capability.c:1129 [capability]security_fixup_ops =_ "Had to override the key_getsecurity security operation with the default.\012"
    security/capability.c:1128 [capability]security_fixup_ops =_ "Had to override the key_permission security operation with the default.\012"
    security/capability.c:1127 [capability]security_fixup_ops =_ "Had to override the key_free security operation with the default.\012"
    security/capability.c:1126 [capability]security_fixup_ops =_ "Had to override the key_alloc security operation with the default.\012"
    security/capability.c:1123 [capability]security_fixup_ops =_ "Had to override the xfrm_decode_session security operation with the default.\012"
    security/capability.c:1122 [capability]security_fixup_ops =_ "Had to override the xfrm_state_pol_flow_match security operation with the default.\012"
    security/capability.c:1121 [capability]security_fixup_ops =_ "Had to override the xfrm_policy_lookup security operation with the default.\012"
    security/capability.c:1120 [capability]security_fixup_ops =_ "Had to override the xfrm_state_delete_security security operation with the default.\012"
    security/capability.c:1119 [capability]security_fixup_ops =_ "Had to override the xfrm_state_free_security security operation with the default.\012"
    security/capability.c:1118 [capability]security_fixup_ops =_ "Had to override the xfrm_state_alloc_acquire security operation with the default.\012"
    security/capability.c:1117 [capability]security_fixup_ops =_ "Had to override the xfrm_state_alloc security operation with the default.\012"
    security/capability.c:1116 [capability]security_fixup_ops =_ "Had to override the xfrm_policy_delete_security security operation with the default.\012"
    security/capability.c:1115 [capability]security_fixup_ops =_ "Had to override the xfrm_policy_free_security security operation with the default.\012"
    security/capability.c:1114 [capability]security_fixup_ops =_ "Had to override the xfrm_policy_clone_security security operation with the default.\012"
    security/capability.c:1113 [capability]security_fixup_ops =_ "Had to override the xfrm_policy_alloc_security security operation with the default.\012"
    security/capability.c:1110 [capability]security_fixup_ops =_ "Had to override the skb_owned_by security operation with the default.\012"
    security/capability.c:1109 [capability]security_fixup_ops =_ "Had to override the tun_dev_attach security operation with the default.\012"
    security/capability.c:1108 [capability]security_fixup_ops =_ "Had to override the tun_dev_attach_queue security operation with the default.\012"
    security/capability.c:1107 [capability]security_fixup_ops =_ "Had to override the tun_dev_open security operation with the default.\012"
    security/capability.c:1106 [capability]security_fixup_ops =_ "Had to override the tun_dev_create security operation with the default.\012"
    security/capability.c:1105 [capability]security_fixup_ops =_ "Had to override the tun_dev_free_security security operation with the default.\012"
    security/capability.c:1104 [capability]security_fixup_ops =_ "Had to override the tun_dev_alloc_security security operation with the default.\012"
    security/capability.c:1103 [capability]security_fixup_ops =_ "Had to override the req_classify_flow security operation with the default.\012"
    security/capability.c:1102 [capability]security_fixup_ops =_ "Had to override the secmark_refcount_dec security operation with the default.\012"
    security/capability.c:1101 [capability]security_fixup_ops =_ "Had to override the secmark_refcount_inc security operation with the default.\012"
    security/capability.c:1100 [capability]security_fixup_ops =_ "Had to override the secmark_relabel_packet security operation with the default.\012"
    security/capability.c:1099 [capability]security_fixup_ops =_ "Had to override the inet_conn_established security operation with the default.\012"
    security/capability.c:1098 [capability]security_fixup_ops =_ "Had to override the inet_csk_clone security operation with the default.\012"
    security/capability.c:1097 [capability]security_fixup_ops =_ "Had to override the inet_conn_request security operation with the default.\012"
    security/capability.c:1096 [capability]security_fixup_ops =_ "Had to override the sock_graft security operation with the default.\012"
    security/capability.c:1095 [capability]security_fixup_ops =_ "Had to override the sk_getsecid security operation with the default.\012"
    security/capability.c:1094 [capability]security_fixup_ops =_ "Had to override the sk_clone_security security operation with the default.\012"
    security/capability.c:1093 [capability]security_fixup_ops =_ "Had to override the sk_free_security security operation with the default.\012"
    security/capability.c:1092 [capability]security_fixup_ops =_ "Had to override the sk_alloc_security security operation with the default.\012"
    security/capability.c:1091 [capability]security_fixup_ops =_ "Had to override the socket_getpeersec_dgram security operation with the default.\012"
    security/capability.c:1090 [capability]security_fixup_ops =_ "Had to override the socket_getpeersec_stream security operation with the default.\012"
    security/capability.c:1089 [capability]security_fixup_ops =_ "Had to override the socket_sock_rcv_skb security operation with the default.\012"
    security/capability.c:1088 [capability]security_fixup_ops =_ "Had to override the socket_shutdown security operation with the default.\012"
    security/capability.c:1087 [capability]security_fixup_ops =_ "Had to override the socket_getsockopt security operation with the default.\012"
    security/capability.c:1086 [capability]security_fixup_ops =_ "Had to override the socket_setsockopt security operation with the default.\012"
    security/capability.c:1085 [capability]security_fixup_ops =_ "Had to override the socket_getpeername security operation with the default.\012"
    security/capability.c:1084 [capability]security_fixup_ops =_ "Had to override the socket_getsockname security operation with the default.\012"
    security/capability.c:1083 [capability]security_fixup_ops =_ "Had to override the socket_recvmsg security operation with the default.\012"
    security/capability.c:1082 [capability]security_fixup_ops =_ "Had to override the socket_sendmsg security operation with the default.\012"
    security/capability.c:1081 [capability]security_fixup_ops =_ "Had to override the socket_accept security operation with the default.\012"
    security/capability.c:1080 [capability]security_fixup_ops =_ "Had to override the socket_listen security operation with the default.\012"
    security/capability.c:1079 [capability]security_fixup_ops =_ "Had to override the socket_connect security operation with the default.\012"
    security/capability.c:1078 [capability]security_fixup_ops =_ "Had to override the socket_bind security operation with the default.\012"
    security/capability.c:1077 [capability]security_fixup_ops =_ "Had to override the socket_post_create security operation with the default.\012"
    security/capability.c:1076 [capability]security_fixup_ops =_ "Had to override the socket_create security operation with the default.\012"
    security/capability.c:1075 [capability]security_fixup_ops =_ "Had to override the unix_may_send security operation with the default.\012"
    security/capability.c:1074 [capability]security_fixup_ops =_ "Had to override the unix_stream_connect security operation with the default.\012"
    security/capability.c:1072 [capability]security_fixup_ops =_ "Had to override the inode_getsecctx security operation with the default.\012"
    security/capability.c:1071 [capability]security_fixup_ops =_ "Had to override the inode_setsecctx security operation with the default.\012"
    security/capability.c:1070 [capability]security_fixup_ops =_ "Had to override the inode_notifysecctx security operation with the default.\012"
    security/capability.c:1069 [capability]security_fixup_ops =_ "Had to override the release_secctx security operation with the default.\012"
    security/capability.c:1068 [capability]security_fixup_ops =_ "Had to override the secctx_to_secid security operation with the default.\012"
    security/capability.c:1067 [capability]security_fixup_ops =_ "Had to override the secid_to_secctx security operation with the default.\012"
    security/capability.c:1066 [capability]security_fixup_ops =_ "Had to override the ismaclabel security operation with the default.\012"
    security/capability.c:1065 [capability]security_fixup_ops =_ "Had to override the setprocattr security operation with the default.\012"
    security/capability.c:1064 [capability]security_fixup_ops =_ "Had to override the getprocattr security operation with the default.\012"
    security/capability.c:1063 [capability]security_fixup_ops =_ "Had to override the d_instantiate security operation with the default.\012"
    security/capability.c:1062 [capability]security_fixup_ops =_ "Had to override the netlink_send security operation with the default.\012"
    security/capability.c:1061 [capability]security_fixup_ops =_ "Had to override the sem_semop security operation with the default.\012"
    security/capability.c:1060 [capability]security_fixup_ops =_ "Had to override the sem_semctl security operation with the default.\012"
    security/capability.c:1059 [capability]security_fixup_ops =_ "Had to override the sem_associate security operation with the default.\012"
    security/capability.c:1058 [capability]security_fixup_ops =_ "Had to override the sem_free_security security operation with the default.\012"
    security/capability.c:1057 [capability]security_fixup_ops =_ "Had to override the sem_alloc_security security operation with the default.\012"
    security/capability.c:1056 [capability]security_fixup_ops =_ "Had to override the shm_shmat security operation with the default.\012"
    security/capability.c:1055 [capability]security_fixup_ops =_ "Had to override the shm_shmctl security operation with the default.\012"
    security/capability.c:1054 [capability]security_fixup_ops =_ "Had to override the shm_associate security operation with the default.\012"
    security/capability.c:1053 [capability]security_fixup_ops =_ "Had to override the shm_free_security security operation with the default.\012"
    security/capability.c:1052 [capability]security_fixup_ops =_ "Had to override the shm_alloc_security security operation with the default.\012"
    security/capability.c:1051 [capability]security_fixup_ops =_ "Had to override the msg_queue_msgrcv security operation with the default.\012"
    security/capability.c:1050 [capability]security_fixup_ops =_ "Had to override the msg_queue_msgsnd security operation with the default.\012"
    security/capability.c:1049 [capability]security_fixup_ops =_ "Had to override the msg_queue_msgctl security operation with the default.\012"
    security/capability.c:1048 [capability]security_fixup_ops =_ "Had to override the msg_queue_associate security operation with the default.\012"
    security/capability.c:1047 [capability]security_fixup_ops =_ "Had to override the msg_queue_free_security security operation with the default.\012"
    security/capability.c:1046 [capability]security_fixup_ops =_ "Had to override the msg_queue_alloc_security security operation with the default.\012"
    security/capability.c:1045 [capability]security_fixup_ops =_ "Had to override the msg_msg_free_security security operation with the default.\012"
    security/capability.c:1044 [capability]security_fixup_ops =_ "Had to override the msg_msg_alloc_security security operation with the default.\012"
    security/capability.c:1043 [capability]security_fixup_ops =_ "Had to override the ipc_getsecid security operation with the default.\012"
    security/capability.c:1042 [capability]security_fixup_ops =_ "Had to override the ipc_permission security operation with the default.\012"
    security/capability.c:1041 [capability]security_fixup_ops =_ "Had to override the task_to_inode security operation with the default.\012"
    security/capability.c:1040 [capability]security_fixup_ops =_ "Had to override the task_prctl security operation with the default.\012"
    security/capability.c:1039 [capability]security_fixup_ops =_ "Had to override the task_kill security operation with the default.\012"
    security/capability.c:1038 [capability]security_fixup_ops =_ "Had to override the task_wait security operation with the default.\012"
    security/capability.c:1037 [capability]security_fixup_ops =_ "Had to override the task_movememory security operation with the default.\012"
    security/capability.c:1036 [capability]security_fixup_ops =_ "Had to override the task_getscheduler security operation with the default.\012"
    security/capability.c:1035 [capability]security_fixup_ops =_ "Had to override the task_setscheduler security operation with the default.\012"
    security/capability.c:1034 [capability]security_fixup_ops =_ "Had to override the task_setrlimit security operation with the default.\012"
    security/capability.c:1033 [capability]security_fixup_ops =_ "Had to override the task_getioprio security operation with the default.\012"
    security/capability.c:1032 [capability]security_fixup_ops =_ "Had to override the task_setioprio security operation with the default.\012"
    security/capability.c:1031 [capability]security_fixup_ops =_ "Had to override the task_setnice security operation with the default.\012"
    security/capability.c:1030 [capability]security_fixup_ops =_ "Had to override the task_getsecid security operation with the default.\012"
    security/capability.c:1029 [capability]security_fixup_ops =_ "Had to override the task_getsid security operation with the default.\012"
    security/capability.c:1028 [capability]security_fixup_ops =_ "Had to override the task_getpgid security operation with the default.\012"
    security/capability.c:1027 [capability]security_fixup_ops =_ "Had to override the task_setpgid security operation with the default.\012"
    security/capability.c:1026 [capability]security_fixup_ops =_ "Had to override the task_fix_setuid security operation with the default.\012"
    security/capability.c:1025 [capability]security_fixup_ops =_ "Had to override the kernel_module_from_file security operation with the default.\012"
    security/capability.c:1024 [capability]security_fixup_ops =_ "Had to override the kernel_module_request security operation with the default.\012"
    security/capability.c:1023 [capability]security_fixup_ops =_ "Had to override the kernel_fw_from_file security operation with the default.\012"
    security/capability.c:1022 [capability]security_fixup_ops =_ "Had to override the kernel_create_files_as security operation with the default.\012"
    security/capability.c:1021 [capability]security_fixup_ops =_ "Had to override the kernel_act_as security operation with the default.\012"
    security/capability.c:1020 [capability]security_fixup_ops =_ "Had to override the cred_transfer security operation with the default.\012"
    security/capability.c:1019 [capability]security_fixup_ops =_ "Had to override the cred_prepare security operation with the default.\012"
    security/capability.c:1018 [capability]security_fixup_ops =_ "Had to override the cred_free security operation with the default.\012"
    security/capability.c:1017 [capability]security_fixup_ops =_ "Had to override the cred_alloc_blank security operation with the default.\012"
    security/capability.c:1016 [capability]security_fixup_ops =_ "Had to override the task_free security operation with the default.\012"
    security/capability.c:1015 [capability]security_fixup_ops =_ "Had to override the task_create security operation with the default.\012"
    security/capability.c:1014 [capability]security_fixup_ops =_ "Had to override the file_open security operation with the default.\012"
    security/capability.c:1013 [capability]security_fixup_ops =_ "Had to override the file_receive security operation with the default.\012"
    security/capability.c:1012 [capability]security_fixup_ops =_ "Had to override the file_send_sigiotask security operation with the default.\012"
    security/capability.c:1011 [capability]security_fixup_ops =_ "Had to override the file_set_fowner security operation with the default.\012"
    security/capability.c:1010 [capability]security_fixup_ops =_ "Had to override the file_fcntl security operation with the default.\012"
    security/capability.c:1009 [capability]security_fixup_ops =_ "Had to override the file_lock security operation with the default.\012"
    security/capability.c:1008 [capability]security_fixup_ops =_ "Had to override the file_mprotect security operation with the default.\012"
    security/capability.c:1007 [capability]security_fixup_ops =_ "Had to override the mmap_file security operation with the default.\012"
    security/capability.c:1006 [capability]security_fixup_ops =_ "Had to override the mmap_addr security operation with the default.\012"
    security/capability.c:1005 [capability]security_fixup_ops =_ "Had to override the file_ioctl security operation with the default.\012"
    security/capability.c:1004 [capability]security_fixup_ops =_ "Had to override the file_free_security security operation with the default.\012"
    security/capability.c:1003 [capability]security_fixup_ops =_ "Had to override the file_alloc_security security operation with the default.\012"
    security/capability.c:1002 [capability]security_fixup_ops =_ "Had to override the file_permission security operation with the default.\012"
    security/capability.c:1000 [capability]security_fixup_ops =_ "Had to override the path_chroot security operation with the default.\012"
    security/capability.c:999 [capability]security_fixup_ops =_ "Had to override the path_chown security operation with the default.\012"
    security/capability.c:998 [capability]security_fixup_ops =_ "Had to override the path_chmod security operation with the default.\012"
    security/capability.c:997 [capability]security_fixup_ops =_ "Had to override the path_truncate security operation with the default.\012"
    security/capability.c:996 [capability]security_fixup_ops =_ "Had to override the path_rename security operation with the default.\012"
    security/capability.c:995 [capability]security_fixup_ops =_ "Had to override the path_link security operation with the default.\012"
    security/capability.c:994 [capability]security_fixup_ops =_ "Had to override the path_symlink security operation with the default.\012"
    security/capability.c:993 [capability]security_fixup_ops =_ "Had to override the path_unlink security operation with the default.\012"
    security/capability.c:992 [capability]security_fixup_ops =_ "Had to override the path_rmdir security operation with the default.\012"
    security/capability.c:991 [capability]security_fixup_ops =_ "Had to override the path_mkdir security operation with the default.\012"
    security/capability.c:990 [capability]security_fixup_ops =_ "Had to override the path_mknod security operation with the default.\012"
    security/capability.c:988 [capability]security_fixup_ops =_ "Had to override the inode_getsecid security operation with the default.\012"
    security/capability.c:987 [capability]security_fixup_ops =_ "Had to override the inode_listsecurity security operation with the default.\012"
    security/capability.c:986 [capability]security_fixup_ops =_ "Had to override the inode_setsecurity security operation with the default.\012"
    security/capability.c:985 [capability]security_fixup_ops =_ "Had to override the inode_getsecurity security operation with the default.\012"
    security/capability.c:984 [capability]security_fixup_ops =_ "Had to override the inode_killpriv security operation with the default.\012"
    security/capability.c:983 [capability]security_fixup_ops =_ "Had to override the inode_need_killpriv security operation with the default.\012"
    security/capability.c:982 [capability]security_fixup_ops =_ "Had to override the inode_removexattr security operation with the default.\012"
    security/capability.c:981 [capability]security_fixup_ops =_ "Had to override the inode_listxattr security operation with the default.\012"
    security/capability.c:980 [capability]security_fixup_ops =_ "Had to override the inode_getxattr security operation with the default.\012"
    security/capability.c:979 [capability]security_fixup_ops =_ "Had to override the inode_post_setxattr security operation with the default.\012"
    security/capability.c:978 [capability]security_fixup_ops =_ "Had to override the inode_setxattr security operation with the default.\012"
    security/capability.c:977 [capability]security_fixup_ops =_ "Had to override the inode_getattr security operation with the default.\012"
    security/capability.c:976 [capability]security_fixup_ops =_ "Had to override the inode_setattr security operation with the default.\012"
    security/capability.c:975 [capability]security_fixup_ops =_ "Had to override the inode_permission security operation with the default.\012"
    security/capability.c:974 [capability]security_fixup_ops =_ "Had to override the inode_follow_link security operation with the default.\012"
    security/capability.c:973 [capability]security_fixup_ops =_ "Had to override the inode_readlink security operation with the default.\012"
    security/capability.c:972 [capability]security_fixup_ops =_ "Had to override the inode_rename security operation with the default.\012"
    security/capability.c:971 [capability]security_fixup_ops =_ "Had to override the inode_mknod security operation with the default.\012"
    security/capability.c:970 [capability]security_fixup_ops =_ "Had to override the inode_rmdir security operation with the default.\012"
    security/capability.c:969 [capability]security_fixup_ops =_ "Had to override the inode_mkdir security operation with the default.\012"
    security/capability.c:968 [capability]security_fixup_ops =_ "Had to override the inode_symlink security operation with the default.\012"
    security/capability.c:967 [capability]security_fixup_ops =_ "Had to override the inode_unlink security operation with the default.\012"
    security/capability.c:966 [capability]security_fixup_ops =_ "Had to override the inode_link security operation with the default.\012"
    security/capability.c:965 [capability]security_fixup_ops =_ "Had to override the inode_create security operation with the default.\012"
    security/capability.c:964 [capability]security_fixup_ops =_ "Had to override the inode_init_security security operation with the default.\012"
    security/capability.c:963 [capability]security_fixup_ops =_ "Had to override the inode_free_security security operation with the default.\012"
    security/capability.c:962 [capability]security_fixup_ops =_ "Had to override the inode_alloc_security security operation with the default.\012"
    security/capability.c:961 [capability]security_fixup_ops =_ "Had to override the dentry_init_security security operation with the default.\012"
    security/capability.c:960 [capability]security_fixup_ops =_ "Had to override the sb_parse_opts_str security operation with the default.\012"
    security/capability.c:959 [capability]security_fixup_ops =_ "Had to override the sb_clone_mnt_opts security operation with the default.\012"
    security/capability.c:958 [capability]security_fixup_ops =_ "Had to override the sb_set_mnt_opts security operation with the default.\012"
    security/capability.c:957 [capability]security_fixup_ops =_ "Had to override the sb_pivotroot security operation with the default.\012"
    security/capability.c:956 [capability]security_fixup_ops =_ "Had to override the sb_umount security operation with the default.\012"
    security/capability.c:955 [capability]security_fixup_ops =_ "Had to override the sb_mount security operation with the default.\012"
    security/capability.c:954 [capability]security_fixup_ops =_ "Had to override the sb_statfs security operation with the default.\012"
    security/capability.c:953 [capability]security_fixup_ops =_ "Had to override the sb_show_options security operation with the default.\012"
    security/capability.c:952 [capability]security_fixup_ops =_ "Had to override the sb_kern_mount security operation with the default.\012"
    security/capability.c:951 [capability]security_fixup_ops =_ "Had to override the sb_remount security operation with the default.\012"
    security/capability.c:950 [capability]security_fixup_ops =_ "Had to override the sb_copy_data security operation with the default.\012"
    security/capability.c:949 [capability]security_fixup_ops =_ "Had to override the sb_free_security security operation with the default.\012"
    security/capability.c:948 [capability]security_fixup_ops =_ "Had to override the sb_alloc_security security operation with the default.\012"
    security/capability.c:947 [capability]security_fixup_ops =_ "Had to override the bprm_secureexec security operation with the default.\012"
    security/capability.c:946 [capability]security_fixup_ops =_ "Had to override the bprm_check_security security operation with the default.\012"
    security/capability.c:945 [capability]security_fixup_ops =_ "Had to override the bprm_committed_creds security operation with the default.\012"
    security/capability.c:944 [capability]security_fixup_ops =_ "Had to override the bprm_committing_creds security operation with the default.\012"
    security/capability.c:943 [capability]security_fixup_ops =_ "Had to override the bprm_set_creds security operation with the default.\012"
    security/capability.c:942 [capability]security_fixup_ops =_ "Had to override the vm_enough_memory security operation with the default.\012"
    security/capability.c:941 [capability]security_fixup_ops =_ "Had to override the settime security operation with the default.\012"
    security/capability.c:940 [capability]security_fixup_ops =_ "Had to override the syslog security operation with the default.\012"
    security/capability.c:939 [capability]security_fixup_ops =_ "Had to override the quota_on security operation with the default.\012"
    security/capability.c:938 [capability]security_fixup_ops =_ "Had to override the quotactl security operation with the default.\012"
    security/capability.c:937 [capability]security_fixup_ops =_ "Had to override the capable security operation with the default.\012"
    security/capability.c:936 [capability]security_fixup_ops =_ "Had to override the capset security operation with the default.\012"
    security/capability.c:935 [capability]security_fixup_ops =_ "Had to override the capget security operation with the default.\012"
    security/capability.c:934 [capability]security_fixup_ops =_ "Had to override the ptrace_traceme security operation with the default.\012"
    security/capability.c:933 [capability]security_fixup_ops =_ "Had to override the ptrace_access_check security operation with the default.\012"
    security/inode.c:96 [inode]securityfs_create_file =_ "securityfs: creating file '%s'\012"
    security/integrity/digsig_asymmetric.c:62 [integrity]request_asymmetric_key =_ "%s() = 0 [%x]\012"
    security/integrity/digsig_asymmetric.c:33 [integrity]request_asymmetric_key =_ "key search: \042%s\042\012"
    security/integrity/digsig_asymmetric.c:103 [integrity]asymmetric_verify =_ "%s() = %d\012"
    crypto/asymmetric_keys/asymmetric_type.c:280 [asymmetric_keys]asymmetric_key_preparse =_ "Parser recognised the format (ret %d)\012"
    crypto/asymmetric_keys/asymmetric_type.c:275 [asymmetric_keys]asymmetric_key_preparse =_ "Trying parser '%s'\012"
    crypto/asymmetric_keys/public_key.c:103 [public_key]public_key_verify_signature =_ "Signature has %u MPI not %u\012"
    crypto/asymmetric_keys/x509_cert_parser.c:553 [x509_key_parser]x509_note_time =_ "Got unsupported time [tag %02x]: '%*.*s'\012"
    crypto/asymmetric_keys/x509_cert_parser.c:501 [x509_key_parser]x509_process_extension =_ "authkeyid %*phN\012"
    crypto/asymmetric_keys/x509_cert_parser.c:446 [x509_key_parser]x509_process_extension =_ "subjkeyid %*phN\012"
    crypto/asymmetric_keys/x509_cert_parser.c:427 [x509_key_parser]x509_process_extension =_ "Extension: %u\012"
    crypto/asymmetric_keys/x509_cert_parser.c:216 [x509_key_parser]x509_note_signature =_ "Signature type: %u size %zu\012"
    crypto/asymmetric_keys/x509_cert_parser.c:164 [x509_key_parser]x509_note_pkey_algo =_ "PubKey Algo: %u\012"
    crypto/asymmetric_keys/x509_cert_parser.c:148 [x509_key_parser]x509_note_tbs_certificate =_ "x509_note_tbs_certificate(,%zu,%02x,%ld,%zu)!\012"
    crypto/asymmetric_keys/x509_cert_parser.c:132 [x509_key_parser]x509_note_OID =_ "Unknown OID: [%lu] %s\012"
    crypto/asymmetric_keys/x509_public_key.c:194 [x509_key_parser]x509_check_signature =_ "Cert Verification: %d\012"
    crypto/asymmetric_keys/x509_public_key.c:90 [x509_key_parser]x509_request_asymmetric_key =_ "Request for key '%s' err %ld\012"
    crypto/asymmetric_keys/x509_public_key.c:85 [x509_key_parser]x509_request_asymmetric_key =_ "Look up: \042%s\042\012"
    block/partitions/efi.c:446 [efi]is_gpt_valid =_ "GUID Partitition Entry Array CRC check failed.\012"
    block/partitions/efi.c:433 [efi]is_gpt_valid =_ "GUID Partitition Entry Size check failed.\012"
    block/partitions/efi.c:428 [efi]is_gpt_valid =_ "GPT: last_usable_lba incorrect: %lld > %lld\012"
    block/partitions/efi.c:422 [efi]is_gpt_valid =_ "GPT: last_usable_lba incorrect: %lld > %lld\012"
    block/partitions/efi.c:416 [efi]is_gpt_valid =_ "GPT: first_usable_lba incorrect: %lld > %lld\012"
    block/partitions/efi.c:405 [efi]is_gpt_valid =_ "GPT my_lba incorrect: %lld != %lld\012"
    block/partitions/efi.c:395 [efi]is_gpt_valid =_ "GUID Partition Table Header CRC is wrong: %x != %x\012"
    block/partitions/efi.c:384 [efi]is_gpt_valid =_ "GUID Partition Table Header size is too small: %u < %zu\012"
    block/partitions/efi.c:376 [efi]is_gpt_valid =_ "GUID Partition Table Header size is too large: %u > %u\012"
    block/partitions/efi.c:367 [efi]is_gpt_valid =_ "GUID Partition Table Header signature is wrong:%lld != %lld\012"
    block/partitions/efi.c:235 [efi]is_pmbr_valid =_ "GPT: mbr size in lba (%u) different than whole disk (%u).\012"
    block/partitions/efi.c:619 [efi]find_valid_gpt =_ "Device has a %s MBR\012"
    block/partitions/efi.c:698 [efi]efi_partition =_ "GUID Partition Table is valid!  Yea!\012"
    lib/decompress.c:65 [decompress]decompress_method =_ "Compressed data magic: %#.2x %#.2x\012"
    lib/kobject.c:846 [kobject]kset_release =_ "kobject: '%s' (%p): %s\012"
    lib/kobject.c:677 [kobject]dynamic_kobj_release =_ "kobject: (%p): %s\012"
    lib/kobject.c:630 [kobject]kobject_cleanup =_ "kobject: '%s': free name\012"
    lib/kobject.c:624 [kobject]kobject_cleanup =_ "kobject: '%s' (%p): calling ktype release\012"
    lib/kobject.c:618 [kobject]kobject_cleanup =_ "kobject: '%s' (%p): auto cleanup kobject_del\012"
    lib/kobject.c:611 [kobject]kobject_cleanup =_ "kobject: '%s' (%p): auto cleanup 'remove' event\012"
    lib/kobject.c:606 [kobject]kobject_cleanup =_ "kobject: '%s' (%p): does not have a release() function, it is broken and must be fixed.\012"
    lib/kobject.c:601 [kobject]kobject_cleanup =_ "kobject: '%s' (%p): %s, parent %p\012"
    lib/kobject.c:227 [kobject]kobject_add_internal =_ "kobject: '%s' (%p): %s: parent: '%s', set: '%s'\012"
    lib/kobject.c:135 [kobject]fill_kobj_path =_ "kobject: '%s' (%p): %s: path = '%s'\012"
    lib/kobject_uevent.c:265 [kobject_uevent]kobject_uevent_env =_ "kobject: '%s' (%p): %s: uevent() returned %d\012"
    lib/kobject_uevent.c:223 [kobject_uevent]kobject_uevent_env =_ "kobject: '%s' (%p): %s: unset subsystem caused the event to drop!\012"
    lib/kobject_uevent.c:211 [kobject_uevent]kobject_uevent_env =_ "kobject: '%s' (%p): %s: filter function caused the event to drop!\012"
    lib/kobject_uevent.c:203 [kobject_uevent]kobject_uevent_env =_ "kobject: '%s' (%p): %s: uevent_suppress caused the event to drop!\012"
    lib/kobject_uevent.c:192 [kobject_uevent]kobject_uevent_env =_ "kobject: '%s' (%p): %s: attempted to send uevent without kset!\012"
    lib/kobject_uevent.c:182 [kobject_uevent]kobject_uevent_env =_ "kobject: '%s' (%p): %s\012"
    lib/percpu-refcount.c:133 [percpu_refcount]percpu_ref_switch_to_atomic_rcu =_ "global %ld percpu %ld"
    lib/asn1_decoder.c:484 [asn1_decoder]asn1_ber_decoder =_ "\012ASN1: %s [m=%zu d=%zu ot=%02x t=%02x l=%zu]\012"
    lib/asn1_decoder.c:411 [asn1_decoder]asn1_ber_decoder =_ "- cons len l=%zu d=%zu\012"
    lib/asn1_decoder.c:405 [asn1_decoder]asn1_ber_decoder =_ "- continue\012"
    lib/asn1_decoder.c:392 [asn1_decoder]asn1_ber_decoder =_ "- continue\012"
    lib/asn1_decoder.c:381 [asn1_decoder]asn1_ber_decoder =_ "- end cons t=%zu dp=%zu l=%zu/%zu\012"
    lib/asn1_decoder.c:342 [asn1_decoder]asn1_ber_decoder =_ "- MATCH_JUMP\012"
    lib/asn1_decoder.c:334 [asn1_decoder]asn1_ber_decoder =_ "- LEAF: %zu\012"
    lib/asn1_decoder.c:298 [asn1_decoder]asn1_ber_decoder =_ "- TAG: %02x %zu%s\012"
    lib/asn1_decoder.c:242 [asn1_decoder]asn1_ber_decoder =_ "- match? %02x %02x %02x\012"
    lib/asn1_decoder.c:229 [asn1_decoder]asn1_ber_decoder =_ "- any %02x\012"
    lib/asn1_decoder.c:197 [asn1_decoder]asn1_ber_decoder =_ "next_op: pc=%zu/%zu dp=%zu/%zu C=%d J=%d\012"
    drivers/pinctrl/core.c:262 [core]pinctrl_register_one_pin =_ "registered pin %d (%s) on %s\012"
    drivers/pinctrl/core.c:1776 [core]pinctrl_register =_ "failed to lookup the sleep state\012"
    drivers/pinctrl/core.c:1764 [core]pinctrl_register =_ "failed to lookup the default state\012"
    drivers/pinctrl/core.c:1745 [core]pinctrl_register =_ "try to register %d pins ...\012"
    drivers/pinctrl/core.c:1118 [core]pinctrl_register_map =_ "add %d pinmux maps\012"
    drivers/pinctrl/core.c:969 [core]pinctrl_lookup_state =_ "using pinctrl dummy state (%s)\012"
    drivers/pinctrl/core.c:882 [core]pinctrl_get =_ "obtain a copy of previously claimed pinctrl\012"
    drivers/pinctrl/core.c:547 [core]pinctrl_get_group_selector =_ "found group selector %u for %s\012"
    drivers/pinctrl/pinmux.c:100 [pinmux]pin_request =_ "request pin %d (%s) for %s\012"
    drivers/pinctrl/pinconf.c:92 [pinconf]pin_config_group_get =_ "cannot get configuration for pin group, missing group config get function in driver\012"
    drivers/pinctrl/pinconf.c:65 [pinconf]pin_config_get_for_pin =_ "cannot get pin configuration, missing pin_config_get() function in driver\012"
    drivers/gpio/gpiolib.c:1913 [gpiolib]__gpiod_get_index =_ "setup of GPIO %s failed\012"
    drivers/gpio/gpiolib.c:1885 [gpiolib]__gpiod_get_index =_ "lookup for GPIO %s failed\012"
    drivers/gpio/gpiolib.c:1880 [gpiolib]__gpiod_get_index =_ "using lookup tables for GPIO lookup\012"
    drivers/gpio/gpiolib.c:1871 [gpiolib]__gpiod_get_index =_ "using ACPI for GPIO lookup\012"
    drivers/gpio/gpiolib.c:1864 [gpiolib]__gpiod_get_index =_ "GPIO lookup for consumer %s\012"
    drivers/gpio/gpiolib.c:1105 [gpiolib]gpiod_set_debounce =_ "gpio-%d (%s): %s: missing set() or set_debounce() operations\012"
    drivers/gpio/gpiolib.c:839 [gpiolib]gpiod_request =_ "gpio-%d (%s): %s: status %d\012"
    drivers/gpio/gpiolib.c:743 [gpiolib]gpiochip_add_pin_range =_ "GPIO chip %s: created GPIO range %d->%d ==> %s PIN %d->%d\012"
    drivers/gpio/gpiolib.c:695 [gpiolib]gpiochip_add_pingroup_range =_ "GPIO chip %s: created GPIO range %d->%d ==> %s PINGRP %s\012"
    drivers/gpio/gpiolib.c:137 [gpiolib]gpiochip_find_base =_ "%s: found new base at %d\012"
    drivers/gpio/gpiolib.c:294 [gpiolib]gpiochip_add =_ "%s: registered GPIOs %d to %d on device: %s\012"
    drivers/gpio/gpiolib-sysfs.c:811 [gpiolib_sysfs]gpiochip_unexport =_ "GPIO chip %s: %s: status %d\012"
    drivers/gpio/gpiolib-sysfs.c:786 [gpiolib_sysfs]gpiochip_export =_ "GPIO chip %s: %s: status %d\012"
    drivers/gpio/gpiolib-sysfs.c:756 [gpiolib_sysfs]gpiod_unexport =_ "gpio-%d (%s): %s: status %d\012"
    drivers/gpio/gpiolib-sysfs.c:713 [gpiolib_sysfs]gpiod_sysfs_set_active_low =_ "gpio-%d (%s): %s: status %d\012"
    drivers/gpio/gpiolib-sysfs.c:669 [gpiolib_sysfs]gpiod_export_link =_ "gpio-%d (%s): %s: status %d\012"
    drivers/gpio/gpiolib-sysfs.c:484 [gpiolib_sysfs]export_store =_ "%s: status %d\012"
    drivers/gpio/gpiolib-sysfs.c:519 [gpiolib_sysfs]unexport_store =_ "%s: status %d\012"
    drivers/gpio/gpiolib-sysfs.c:620 [gpiolib_sysfs]gpiod_export =_ "gpio-%d (%s): %s: status %d\012"
    drivers/gpio/gpiolib-sysfs.c:589 [gpiolib_sysfs]gpiod_export =_ "gpio-%d (%s): %s: unavailable (requested=%d, exported=%d)\012"
    drivers/gpio/gpiolib-sysfs.c:568 [gpiolib_sysfs]gpiod_export =_ "%s: invalid gpio descriptor\012"
    drivers/gpio/gpiolib-sysfs.c:563 [gpiolib_sysfs]gpiod_export =_ "%s: called too early!\012"
    drivers/gpio/gpiolib-acpi.c:493 [gpiolib_acpi]acpi_get_gpiod_by_index =_ "GPIO: looking up %d in _CRS\012"
    drivers/gpio/gpiolib-acpi.c:491 [gpiolib_acpi]acpi_get_gpiod_by_index =_ "GPIO: _DSD returned %s %zd %llu %llu %llu\012"
    drivers/gpio/gpiolib-acpi.c:461 [gpiolib_acpi]acpi_get_gpiod_by_index =_ "GPIO: looking up %s\012"
    drivers/pwm/core.c:528 [core]of_pwm_get =_ "%s(): can't parse \042pwms\042 property\012"
    drivers/pci/probe.c:1917 [probe]pci_create_root_bus =_ "bus already known\012"
    drivers/pci/probe.c:1869 [probe]pci_scan_child_bus =_ "bus scan returning with max=%02x\012"
    drivers/pci/probe.c:1851 [probe]pci_scan_child_bus =_ "fixups for bus\012"
    drivers/pci/probe.c:1837 [probe]pci_scan_child_bus =_ "scanning bus\012"
    drivers/pci/probe.c:779 [probe]pci_scan_bridge =_ "scanning [bus %02x-%02x] behind bridge, pass %d\012"
    drivers/pci/pci.c:2878 [pci]pci_set_mwi =_ "enabling Mem-Wr-Inval\012"
    drivers/pci/pci.c:2749 [pci]__pci_set_master =_ "%s bus mastering\012"
    drivers/pci/pci.c:1760 [pci]pci_pme_active =_ "PME# %s\012"
    drivers/pci/pci.c:1030 [pci]pci_restore_config_dword =_ "restoring config space at offset %#x (was %#x, writing %#x)\012"
    drivers/pci/slot.c:333 [slot]pci_destroy_slot =_ "dev %02x, dec refcount to %d\012"
    drivers/pci/slot.c:107 [slot]pci_slot_release =_ "dev %02x, released physical slot %s\012"
    drivers/pci/slot.c:309 [slot]pci_create_slot =_ "dev %02x, created physical slot %s\012"
    drivers/pci/quirks.c:2995 [quirks]fixup_debug_report =_ "pci fixup %pF returned after %lld usecs for %s\012"
    drivers/pci/quirks.c:2977 [quirks]fixup_debug_start =_ "calling  %pF @ %i for %s\012"
    drivers/pci/quirks.c:2974 [quirks]fixup_debug_start =_ "calling %pF\012"
    drivers/pci/pcie/pme.c:215 [pme]pcie_pme_handle_request =_ "Spurious native PME interrupt!\012"
    drivers/pci/pcie/pme.c:209 [pme]pcie_pme_handle_request =_ "PME interrupt generated for non-existent device %02x:%02x.%d\012"
    drivers/pci/hotplug/acpi_pcihp.c:71 [pci_hotplug]acpi_run_oshp =_ "%s:%s OSHP passes\012"
    drivers/pci/hotplug/acpiphp_core.c:279 [acpiphp]release_slot =_ "%s - physical_slot = %s\012"
    drivers/pci/hotplug/acpiphp_core.c:137 [acpiphp]enable_slot =_ "%s - physical_slot = %s\012"
    drivers/pci/hotplug/acpiphp_core.c:154 [acpiphp]disable_slot =_ "%s - physical_slot = %s\012"
    drivers/pci/hotplug/acpiphp_core.c:175 [acpiphp]set_attention_status =_ "%s - physical_slot = %s\012"
    drivers/pci/hotplug/acpiphp_core.c:198 [acpiphp]get_power_status =_ "%s - physical_slot = %s\012"
    drivers/pci/hotplug/acpiphp_core.c:221 [acpiphp]get_attention_status =_ "%s - physical_slot = %s\012"
    drivers/pci/hotplug/acpiphp_core.c:244 [acpiphp]get_latch_status =_ "%s - physical_slot = %s\012"
    drivers/pci/hotplug/acpiphp_core.c:264 [acpiphp]get_adapter_status =_ "%s - physical_slot = %s\012"
    drivers/pci/hotplug/acpiphp_glue.c:795 [acpiphp]hotplug_event =_ "Eject request in %s()\012"
    drivers/pci/hotplug/acpiphp_glue.c:780 [acpiphp]hotplug_event =_ "Device check in %s()\012"
    drivers/pci/hotplug/acpiphp_glue.c:770 [acpiphp]hotplug_event =_ "Bus check in %s()\012"
    drivers/pci/hotplug/acpiphp_glue.c:347 [acpiphp]acpiphp_add_context =_ "found ACPI PCI Hotplug slot %llu at PCI %04x:%02x:%02x\012"
    drivers/pci/pci-acpi.c:439 [pci_acpi]acpi_pci_set_power_state =_ "power state changed by ACPI to %s\012"
    drivers/rapidio/rio.c:1953 [rapidio]rio_register_mport =_ "RIO: %s %s id=%d\012"
    drivers/rapidio/rio.c:1934 [rapidio]rio_register_mport =_ "RIO: mport%d registered\012"
    drivers/rapidio/rio.c:1825 [rapidio]disc_work_handler =_ "RIO: discovery work for mport %d %s\012"
    drivers/rapidio/rio.c:1894 [rapidio]rio_init_mports =_ "RIO: destroy discovery workqueue\012"
    drivers/rapidio/rio.c:1734 [rapidio]rio_unregister_scan =_ "RIO: %s for mport_id=%d\012"
    drivers/rapidio/rio.c:1660 [rapidio]rio_register_scan =_ "RIO: %s for mport_id=%d\012"
    drivers/rapidio/rio.c:1347 [rapidio]rio_unlock_device =_ "RIO: badness when releasing device lock %x:%x\012"
    drivers/rapidio/rio.c:1305 [rapidio]rio_lock_device =_ "RIO: timeout when locking device %x:%x\012"
    drivers/rapidio/rio.c:859 [rapidio]rio_clr_err_stopped =_ "RIO_EM: SP%d_ERR_STS_CSR=0x%08x\012"
    drivers/rapidio/rio.c:851 [rapidio]rio_clr_err_stopped =_ "RIO_EM: servicing Input Error-Stopped state\012"
    drivers/rapidio/rio.c:847 [rapidio]rio_clr_err_stopped =_ "RIO_EM: SP%d_ERR_STS_CSR=0x%08x\012"
    drivers/rapidio/rio.c:841 [rapidio]rio_clr_err_stopped =_ "RIO_EM: Invalid nextdev pointer (NULL)\012"
    drivers/rapidio/rio.c:815 [rapidio]rio_clr_err_stopped =_ "RIO_EM: SP%d far_ackID=0x%02x far_linkstat=0x%02x near_ackID=0x%02x\012"
    drivers/rapidio/rio.c:811 [rapidio]rio_clr_err_stopped =_ "RIO_EM: SP%d_ACK_STS_CSR=0x%08x\012"
    drivers/rapidio/rio.c:805 [rapidio]rio_clr_err_stopped =_ "RIO_EM: SP%d Input-status response=0x%08x\012"
    drivers/rapidio/rio.c:800 [rapidio]rio_clr_err_stopped =_ "RIO_EM: Input-status response timeout\012"
    drivers/rapidio/rio.c:795 [rapidio]rio_clr_err_stopped =_ "RIO_EM: servicing Output Error-Stopped state\012"
    drivers/rapidio/rio.c:692 [rapidio]rio_chk_dev_route =_ "RIO: failed to trace route to %s\012"
    drivers/rapidio/rio.c:687 [rapidio]rio_chk_dev_route =_ "RIO: link failed on [%s]-P%d\012"
    drivers/rapidio/rio.c:1004 [rapidio]rio_inb_pwrite_handler =_ "RIO_PW: RIO_EM_LTL_ERR_DETECT=0x%08x\012"
    drivers/rapidio/rio.c:994 [rapidio]rio_inb_pwrite_handler =_ "RIO_PW: RIO_EM_P%d_ERR_DETECT=0x%08x\012"
    drivers/rapidio/rio.c:986 [rapidio]rio_inb_pwrite_handler =_ "RIO_PW: Device Extraction on [%s]-P%d\012"
    drivers/rapidio/rio.c:961 [rapidio]rio_inb_pwrite_handler =_ "RIO_PW: Device Insertion on [%s]-P%d\012"
    drivers/rapidio/rio.c:952 [rapidio]rio_inb_pwrite_handler =_ "RIO_PW: SP%d_ERR_STS_CSR=0x%08x\012"
    drivers/rapidio/rio.c:920 [rapidio]rio_inb_pwrite_handler =_ "RIO: device access failed - get link partner\012"
    drivers/rapidio/rio.c:887 [rapidio]rio_inb_pwrite_handler =_ "RIO: Port-Write message from %s\012"
    drivers/rapidio/rio.c:883 [rapidio]rio_inb_pwrite_handler =_ "RIO: %s No matching device for CTag 0x%08x\012"
    drivers/video/backlight/backlight.c:146 [backlight]bl_power_store =_ "set power to %lu\012"
    drivers/video/backlight/backlight.c:185 [backlight]brightness_store =_ "set brightness to %lu\012"
    drivers/video/backlight/backlight.c:324 [backlight]backlight_device_register =_ "backlight_device_register: name=%s\012"
    drivers/video/fbdev/core/fbmon.c:1069 [fb]fb_edid_add_monspecs =_ "Adding SVD #%d: %ux%u@%u\012"
    drivers/video/fbdev/core/fbmon.c:1057 [fb]fb_edid_add_monspecs =_ "Adding %ux%u@%u\012"
    drivers/video/fbdev/core/fbmon.c:1020 [fb]fb_edid_add_monspecs =_ "N%sative mode #%d\012"
    drivers/video/fbdev/core/fbmon.c:1014 [fb]fb_edid_add_monspecs =_ "Data block %u of %u bytes\012"
    drivers/idle/intel_idle.c:783 [intel_idle]intel_idle_probe =p "intel_idle: lapic_timer_reliable_states 0x%x\012"
    drivers/idle/intel_idle.c:780 [intel_idle]intel_idle_probe =p "intel_idle: v0.4 model 0x%X\012"
    drivers/idle/intel_idle.c:769 [intel_idle]intel_idle_probe =p "intel_idle: MWAIT substates: 0x%x\012"
    drivers/idle/intel_idle.c:755 [intel_idle]intel_idle_probe =p "intel_idle: does not run on family %d model %d\012"
    drivers/idle/intel_idle.c:746 [intel_idle]intel_idle_probe =p "intel_idle: disabled\012"
    drivers/idle/intel_idle.c:914 [intel_idle]intel_idle_cpu_init =p "intel_idle: cpuidle_register_device %d failed!\012"
    drivers/acpi/osl.c:1837 [acpi]acpi_os_initialize =_ "ACPI: %s: map reset_reg status %d\012"
    drivers/acpi/device_pm.c:741 [acpi]acpi_pm_device_sleep_wake =_ "ACPI companion missing in %s!\012"
    drivers/acpi/device_pm.c:717 [acpi]acpi_pm_device_run_wake =_ "ACPI companion missing in %s!\012"
    drivers/acpi/device_pm.c:616 [acpi]acpi_pm_device_sleep_state =_ "ACPI companion missing in %s!\012"
    drivers/acpi/bus.c:403 [acpi]acpi_bus_notify =_ "Unknown event type 0x%x\012"
    drivers/acpi/bus.c:384 [acpi]acpi_bus_notify =_ "ACPI_NOTIFY_DEVICE_CHECK_LIGHT event\012"
    drivers/acpi/bus.c:379 [acpi]acpi_bus_notify =_ "ACPI_NOTIFY_EJECT_REQUEST event\012"
    drivers/acpi/bus.c:375 [acpi]acpi_bus_notify =_ "ACPI_NOTIFY_DEVICE_WAKE event\012"
    drivers/acpi/bus.c:370 [acpi]acpi_bus_notify =_ "ACPI_NOTIFY_DEVICE_CHECK event\012"
    drivers/acpi/bus.c:365 [acpi]acpi_bus_notify =_ "ACPI_NOTIFY_BUS_CHECK event\012"
    drivers/acpi/bus.c:166 [acpi]acpi_bus_get_private_data =_ "No context for object\012"
    drivers/acpi/bus.c:149 [acpi]acpi_bus_attach_private_data =_ "Error attaching device data\012"
    drivers/acpi/scan.c:2229 [acpi]acpi_device_dep_initialize =_ "Error reading _DEP device info\012"
    drivers/acpi/scan.c:2219 [acpi]acpi_device_dep_initialize =_ "Failed to evaluate _DEP.\012"
    drivers/acpi/acpi_processor.c:267 [acpi]acpi_processor_get_info =_ "failed to get CPU physical ID.\012"
    drivers/acpi/ec.c:995 [acpi]ec_flag_msi =_ "Detected MSI hardware, enabling workarounds.\012"
    drivers/acpi/ec.c:1007 [acpi]ec_enlarge_storm_threshold =_ "Setting the EC GPE storm threshold to 20\012"
    drivers/acpi/ec.c:1043 [acpi]ec_clear_on_resume =_ "Detected system needing EC poll on resume.\012"
    drivers/acpi/ec.c:1019 [acpi]ec_flag_query_handshake =_ "Detected the EC firmware requiring QR_EC issued when SCI_EVT set\012"
    drivers/acpi/ec.c:1143 [acpi]acpi_ec_ecdt_probe =_ "Look up EC in DSDT\012"
    drivers/acpi/ec.c:676 [acpi]ec_check_sci =_ "***** Event started *****\012"
    drivers/acpi/ec.c:628 [acpi]acpi_ec_run =_ "##### Query(0x%02x) stopped #####\012"
    drivers/acpi/ec.c:623 [acpi]acpi_ec_run =_ "##### Query(0x%02x) started #####\012"
    drivers/acpi/ec.c:652 [acpi]acpi_ec_sync_query =_ "##### Query(0x%02x) scheduled #####\012"
    drivers/acpi/ec.c:146 [acpi]acpi_ec_read_status =_ "EC_SC(R) = 0x%2.2x SCI_EVT=%d BURST=%d CMD=%d IBF=%d OBF=%d\012"
    drivers/acpi/ec.c:310 [acpi]ec_poll =_ "controller reset, restart transaction\012"
    drivers/acpi/ec.c:160 [acpi]acpi_ec_write_cmd =_ "EC_SC(W) = 0x%2.2x\012"
    drivers/acpi/ec.c:154 [acpi]acpi_ec_read_data =_ "EC_DATA(R) = 0x%2.2x\012"
    drivers/acpi/ec.c:166 [acpi]acpi_ec_write_data =_ "EC_DATA(W) = 0x%2.2x\012"
    drivers/acpi/ec.c:247 [acpi]advance_transaction =_ "***** Command(%s) software completion *****\012"
    drivers/acpi/ec.c:228 [acpi]advance_transaction =_ "***** Command(%s) hardware completion *****\012"
    drivers/acpi/ec.c:210 [acpi]advance_transaction =_ "===== %s (%d) =====\012"
    drivers/acpi/ec.c:341 [acpi]acpi_ec_transaction_unlocked =_ "***** Command(%s) stopped *****\012"
    drivers/acpi/ec.c:335 [acpi]acpi_ec_transaction_unlocked =_ "***** Event stopped *****\012"
    drivers/acpi/ec.c:331 [acpi]acpi_ec_transaction_unlocked =_ "***** Command(%s) started *****\012"
    drivers/acpi/dock.c:298 [acpi]hotplug_dock_devices =_ "scan error %d\012"
    drivers/acpi/pci_root.c:343 [acpi]acpi_get_pci_dev =_ "Not a PCI-to-PCI bridge\012"
    drivers/acpi/pci_irq.c:512 [acpi]acpi_pci_irq_disable =_ "PCI INT %c disabled\012"
    drivers/acpi/pci_irq.c:472 [acpi]acpi_pci_irq_enable =_ "PCI INT %c%s -> GSI %u (%s, %s) -> IRQ %d\012"
    drivers/acpi/acpi_lpss.c:536 [acpi]acpi_lpss_save_ctx =_ "saving 0x%08x from LPSS reg at offset 0x%02lx\012"
    drivers/acpi/acpi_lpss.c:565 [acpi]acpi_lpss_restore_ctx =_ "restoring 0x%08x to LPSS reg at offset 0x%02lx\012"
    drivers/acpi/acpi_platform.c:113 [acpi]acpi_create_platform_device =_ "created platform device %s\012"
    drivers/acpi/fan.c:140 [fan]fan_get_state_acpi4 =_ "Invalid control value returned\012"
    drivers/acpi/fan.c:198 [fan]fan_set_state_acpi4 =_ "Failed to set state by _FSL\012"
    drivers/acpi/fan.c:362 [fan]acpi_fan_probe =_ "registered as cooling_device%d\012"
    drivers/acpi/pci_slot.c:101 [pci_slot]check_slot =_ "%s: _SUN returned %d on %s\012"
    drivers/acpi/pci_slot.c:94 [pci_slot]check_slot =_ "%s: _ADR returned %d on %s\012"
    drivers/acpi/pci_slot.c:83 [pci_slot]check_slot =_ "%s: Checking slot on path: %s\012"
    drivers/acpi/pci_slot.c:158 [pci_slot]register_slot =_ "%s: pci_slot: %p, pci_bus: %x, device: %d, name: %s\012"
    drivers/acpi/processor_driver.c:197 [processor]__acpi_processor_start =_ "registered as cooling_device%d\012"
    drivers/acpi/processor_perflib.c:142 [processor]acpi_processor_get_platform_limit =_ "CPU %d: _PPC is %d - frequency %s limited\012"
    drivers/acpi/acpi_memhotplug.c:349 [acpi_memhotplug]acpi_memory_device_add =_ "Memory device configured by ACPI\012"
    drivers/pnp/resource.c:519 [pnp]pnp_add_resource =_ "%pR\012"
    drivers/pnp/pnpacpi/core.c:72 [pnp]pnpacpi_set_resources =_ "ACPI device not found in %s!\012"
    drivers/pnp/pnpacpi/core.c:112 [pnp]pnpacpi_disable_resources =_ "ACPI device not found in %s!\012"
    drivers/pnp/pnpacpi/core.c:108 [pnp]pnpacpi_disable_resources =_ "disable resources\012"
    drivers/pnp/pnpacpi/core.c:134 [pnp]pnpacpi_can_wakeup =_ "ACPI device not found in %s!\012"
    drivers/pnp/pnpacpi/core.c:147 [pnp]pnpacpi_suspend =_ "ACPI device not found in %s!\012"
    drivers/pnp/pnpacpi/core.c:183 [pnp]pnpacpi_resume =_ "ACPI device not found in %s!\012"
    drivers/dma/dmaengine.c:695 [dmaengine]dmaengine_get =_ "%s: failed to get %s: (%d)\012"
    drivers/dma/dmaengine.c:613 [dmaengine]__dma_request_channel =_ "%s: %s (%s)\012"
    drivers/dma/dmaengine.c:600 [dmaengine]__dma_request_channel =_ "%s: failed to get %s: (%d)\012"
    drivers/dma/dmaengine.c:596 [dmaengine]__dma_request_channel =_ "%s: %s module removed\012"
    drivers/dma/dmaengine.c:502 [dmaengine]private_candidate =_ "%s: %s filter said false\012"
    drivers/dma/dmaengine.c:497 [dmaengine]private_candidate =_ "%s: %s busy\012"
    drivers/dma/dmaengine.c:481 [dmaengine]private_candidate =_ "%s: wrong capabilities\012"
    drivers/dma/dmaengine.c:554 [dmaengine]dma_get_any_slave_channel =_ "%s: failed to get %s: (%d)\012"
    drivers/dma/dmaengine.c:526 [dmaengine]dma_get_slave_channel =_ "%s: failed to get %s: (%d)\012"
    drivers/dma/acpi-dma.c:89 [acpi_dma]acpi_dma_parse_resource_group =_ "request line base: 0x%04x end: 0x%04x\012"
    drivers/dma/acpi-dma.c:78 [acpi_dma]acpi_dma_parse_resource_group =_ "matches with %.4s%04X (rev %u)\012"
    drivers/virtio/virtio_ring.c:698 [virtio_ring]vring_interrupt =_ "virtqueue callback for %p (%p)\012"
    drivers/virtio/virtio_ring.c:691 [virtio_ring]vring_interrupt =_ "virtqueue interrupt with no work for %p\012"
    drivers/virtio/virtio_ring.c:486 [virtio_ring]virtqueue_get_buf =_ "No more buffers in queue\012"
    drivers/virtio/virtio_ring.c:253 [virtio_ring]virtqueue_add =_ "Added buffer head %i to %p\012"
    drivers/virtio/virtio_ring.c:194 [virtio_ring]virtqueue_add =_ "Can't add buf len %i - avail = %i\012"
    drivers/xen/grant-table.c:324 [grant_table]gnttab_handle_deferred =_ "freeing g.e. %#x (pfn %#lx)\012"
    drivers/xen/xenbus/xenbus_comms.c:193 [xenbus]xb_read =_ "Finished read of %i bytes (%i to go)\012"
    drivers/xen/xenbus/xenbus_probe.c:649 [xenbus]xenbus_dev_cancel =_ "xenbus_probe (%s:%d) cancel.\012"
    drivers/xen/xenbus/xenbus_probe.c:613 [xenbus]xenbus_dev_resume =_ "xenbus_probe (%s:%d) %s.\012"
    drivers/xen/xenbus/xenbus_probe.c:593 [xenbus]xenbus_dev_suspend =_ "xenbus_probe (%s:%d) %s.\012"
    drivers/xen/xenbus/xenbus_probe.c:352 [xenbus]cleanup_dev =_ "xenbus_probe (%s:%d) %s.\012"
    drivers/xen/xenbus/xenbus_probe.c:282 [xenbus]xenbus_dev_shutdown =_ "xenbus_probe (%s:%d) %s.\012"
    drivers/xen/xenbus/xenbus_probe.c:263 [xenbus]xenbus_dev_remove =_ "xenbus_probe (%s:%d) %s.\012"
    drivers/xen/xenbus/xenbus_probe.c:219 [xenbus]xenbus_dev_probe =_ "xenbus_probe (%s:%d) %s.\012"
    drivers/xen/xenbus/xenbus_probe.c:195 [xenbus]xenbus_otherend_changed =_ "state is %d, (%s), %s, %s\012"
    drivers/xen/xenbus/xenbus_probe.c:187 [xenbus]xenbus_otherend_changed =_ "Ignoring watch at %s\012"
    drivers/xen/xenbus/xenbus_probe_backend.c:210 [xenbus]backend_changed =_ "(%s:%d) \012"
    drivers/xen/xenbus/xenbus_probe_backend.c:265 [xenbus]xenbus_probe_backend_init =_ "(%s:%d) \012"
    drivers/xen/xenbus/xenbus_probe_backend.c:146 [xenbus]xenbus_probe_backend_unit =_ "(%s:%d) %s\012\012"
    drivers/xen/xenbus/xenbus_probe_backend.c:162 [xenbus]xenbus_probe_backend =_ "(%s:%d) \012"
    drivers/xen/xenbus/xenbus_probe_backend.c:103 [xenbus]xenbus_uevent_backend =_ "(%s:%d) \012"
    drivers/xen/xenbus/xenbus_probe_frontend.c:166 [xenbus_probe_frontend]frontend_changed =_ "(%s:%d) \012"
    drivers/xen/xenbus/xenbus_probe_frontend.c:479 [xenbus_probe_frontend]xenbus_probe_frontend_init =_ "(%s:%d) \012"
    drivers/xen/xenbus/xenbus_probe_frontend.c:71 [xenbus_probe_frontend]xenbus_probe_frontend =_ "(%s:%d) %s\012"
    drivers/xen/xenbus/xenbus_probe_frontend.c:63 [xenbus_probe_frontend]xenbus_probe_frontend =_ "(%s:%d) Ignoring buggy device entry console/0\012"
    drivers/xen/xen-acpi-processor.c:319 [xen_acpi_processor]get_max_acpi_id =_ "Max ACPI ID: %u\012"
    drivers/xen/xen-acpi-processor.c:524 [xen_acpi_processor]xen_acpi_processor_init =_ "Memory allocation error for acpi_perf_data\012"
    drivers/xen/xen-acpi-processor.c:373 [xen_acpi_processor]read_acpi_id =_ "ACPI CPU%u w/ PBLK:0x%lx\012"
    drivers/xen/xen-acpi-processor.c:367 [xen_acpi_processor]read_acpi_id =_ "We only have %u, trying to set %u\012"
    drivers/xen/xen-acpi-processor.c:260 [xen_acpi_processor]push_pxx_to_hypervisor =_ "     %cP%d: %d MHz, %d mW, %d uS\012"
    drivers/xen/xen-acpi-processor.c:254 [xen_acpi_processor]push_pxx_to_hypervisor =_ "ACPI CPU%u - P-states uploaded.\012"
    drivers/xen/xen-acpi-processor.c:128 [xen_acpi_processor]push_cxx_to_hypervisor =_ "     C%d: %s %d uS\012"
    drivers/xen/xen-acpi-processor.c:122 [xen_acpi_processor]push_cxx_to_hypervisor =_ "ACPI CPU%u - C-states uploaded.\012"
    drivers/xen/xen-acpi-processor.c:105 [xen_acpi_processor]push_cxx_to_hypervisor =_ "No _Cx for ACPI CPU %u\012"
    drivers/regulator/core.c:1123 [core]set_consumer_device_supply =_ "%s: %s/%s is '%s' supply; fail %s/%s\012"
    drivers/regulator/core.c:831 [core]print_constraints =_ "%s: %s\012"
    drivers/regulator/core.c:930 [core]machine_constraints_voltage =_ "%s: override max_uV, %d -> %d\012"
    drivers/regulator/core.c:925 [core]machine_constraints_voltage =_ "%s: override min_uV, %d -> %d\012"
    drivers/regulator/core.c:1676 [core]regulator_ena_gpio_request =_ "%s: GPIO %d is already used\012"
    drivers/regulator/core.c:149 [core]of_get_regulator =_ "Looking up %s property in node %s failed"
    drivers/regulator/core.c:142 [core]of_get_regulator =_ "Looking up %s-supply from device tree\012"
    drivers/regulator/core.c:1263 [core]regulator_supply_alias =_ "Mapping supply %s to %s,%s\012"
    drivers/tty/tty_io.c:3198 [tty_io]tty_device_create_release =_ "device: '%s': %s\012"
    drivers/tty/vt/vt_ioctl.c:1462 [vt_ioctl]vt_move_to_console =_ "Suspend: Can't switch VCs."
    drivers/tty/serial/serial_core.c:1617 [serial_core]uart_open =_ "uart_open(%d) called\012"
    drivers/tty/serial/serial_core.c:1407 [serial_core]uart_close =_ "uart_close(%d) called\012"
    drivers/tty/serial/serial_core.c:1526 [serial_core]uart_hangup =_ "uart_hangup(%d)\012"
    drivers/tty/serial/serial_core.c:587 [serial_core]uart_flush_buffer =_ "uart_flush_buffer(%d) called\012"
    drivers/tty/serial/serial_core.c:1499 [serial_core]uart_wait_until_sent =_ "uart_wait_until_sent(%d), jiffies=%lu, expire=%lu...\012"
    drivers/tty/serial/8250/8250_core.c:2258 [8250]serial8250_do_startup =_ "ttyS%d - enabling bad tx status workarounds\012"
    drivers/tty/serial/8250/8250_core.c:2184 [8250]serial8250_do_startup =_ "ttyS%d - using backup timer\012"
    drivers/tty/serial/8250/8250_dma.c:253 [8250]serial8250_release_dma =_ "dma channels released\012"
    drivers/tty/serial/8250/8250_dma.c:220 [8250]serial8250_request_dma =_ "got both dma channels\012"
    drivers/tty/serial/8250/8250_pci.c:232 [8250_pci]pci_inteli960ni_init =_ "Local i960 firmware missing\012"
    drivers/tty/serial/8250/8250_pci.c:1652 [8250_pci]skip_tx_en_setup =_ "serial8250: skipping TxEn test for device [%04x:%04x] subsystem [%04x:%04x]\012"
    drivers/tty/serial/8250/8250_pci.c:1022 [8250_pci]pci_endrun_init =_ "%d ports detected on EndRun PCI Express device\012"
    drivers/tty/serial/8250/8250_pci.c:1054 [8250_pci]pci_oxsemi_tornado_init =_ "%d ports detected on Oxford PCI Express device\012"
    drivers/tty/serial/8250/8250_pci.c:1618 [8250_pci]pci_fintek_setup =_ "%s: idx=%d iobase=0x%lx ciobase=0x%lx config_base=0x%2x\012"
    drivers/tty/serial/8250/8250_pci.c:3860 [8250_pci]pciserial_init_ports =_ "Setup PCI port: port %lx, irq %d, type %d\012"
    drivers/tty/serial/max310x.c:1160 [max310x]max310x_probe =_ "Reference clock set to %i Hz\012"
    drivers/tty/serial/sccnxp.c:318 [sccnxp]sccnxp_set_baud =_ "Baudrate desired: %i, calculated: %i\012"
    drivers/char/virtio_console.c:1631 [virtio_console]handle_control_message =_ "Port %u already added\012"
    drivers/char/virtio_console.c:1623 [virtio_console]handle_control_message =_ "Invalid index %u in control packet\012"
    drivers/char/tpm/tpm-dev.c:66 [tpm]tpm_open =_ "Another process owns this TPM\012"
    drivers/char/tpm/tpm_tis.c:655 [tpm_tis]tpm_tis_init =_ "\011Data Avail Int Support\012"
    drivers/char/tpm/tpm_tis.c:653 [tpm_tis]tpm_tis_init =_ "\011Sts Valid Int Support\012"
    drivers/char/tpm/tpm_tis.c:651 [tpm_tis]tpm_tis_init =_ "\011Locality Change Int Support\012"
    drivers/char/tpm/tpm_tis.c:649 [tpm_tis]tpm_tis_init =_ "\011Interrupt Level High\012"
    drivers/char/tpm/tpm_tis.c:647 [tpm_tis]tpm_tis_init =_ "\011Interrupt Level Low\012"
    drivers/char/tpm/tpm_tis.c:645 [tpm_tis]tpm_tis_init =_ "\011Interrupt Edge Rising\012"
    drivers/char/tpm/tpm_tis.c:643 [tpm_tis]tpm_tis_init =_ "\011Interrupt Edge Falling\012"
    drivers/char/tpm/tpm_tis.c:641 [tpm_tis]tpm_tis_init =_ "\011Command Ready Int Support\012"
    drivers/char/tpm/tpm_tis.c:639 [tpm_tis]tpm_tis_init =_ "\011Burst Count Static\012"
    drivers/char/tpm/tpm_tis.c:637 [tpm_tis]tpm_tis_init =_ "TPM interface capabilities (0x%x):\012"
    drivers/iommu/iommu.c:1130 [iommu]iommu_unmap =_ "unmapped: iova 0x%lx size 0x%zx\012"
    drivers/iommu/iommu.c:1116 [iommu]iommu_unmap =_ "unmap this: iova 0x%lx size 0x%zx\012"
    drivers/iommu/iommu.c:1072 [iommu]iommu_map =_ "mapping: iova 0x%lx pa %pa pgsize 0x%zx\012"
    drivers/iommu/iommu.c:1066 [iommu]iommu_map =_ "map: iova 0x%lx pa %pa size 0x%zx\012"
    drivers/iommu/dmar.c:569 [dmar]dmar_walk_remapping_entries =_ "Unknown DMAR structure type %d\012"
    drivers/iommu/dmar.c:554 [dmar]dmar_walk_remapping_entries =_ "[Firmware Bug]: Invalid 0-length structure\012"
    drivers/iommu/intel-iommu.c:2465 [intel_iommu]si_domain_init =_ "IOMMU: identity mapping domain is domain %d\012"
    drivers/iommu/intel-iommu.c:2322 [intel_iommu]iommu_domain_identity_map =_ "Mapping reserved region %llx-%llx for domain %d\012"
    drivers/iommu/intel-iommu.c:4080 [intel_iommu]intel_iommu_memory_notifier =_ "dmar: failed get IOVA for PFN %lx\012"
    drivers/iommu/intel-iommu.c:1271 [intel_iommu]__iommu_flush_iotlb =_ "IOMMU: tlb flush request %Lx, actual %Lx\012"
    drivers/iommu/intel-iommu.c:1441 [intel_iommu]iommu_init_domains =_ "IOMMU%d: Number of Domains supported <%ld>\012"
    drivers/iommu/intel-iommu.c:1717 [intel_iommu]domain_init =_ "IOMMU: hardware doesn't support agaw %d\012"
    drivers/iommu/intel-iommu.c:1794 [intel_iommu]domain_context_mapping_one =_ "Set context mapping for %02x:%02x.%d\012"
    drivers/iommu/intel-iommu.c:3210 [intel_iommu]intel_unmap =_ "Device %s unmapping: pfn %lx-%lx\012"
    drivers/gpu/vga/vgaarb.c:1128 [vgaarb]vga_arb_write =_ "vgaarb: client 0x%p called 'decodes'\012"
    drivers/gpu/vga/vgaarb.c:1092 [vgaarb]vga_arb_write =_ "vgaarb: vgadev %p\012"
    drivers/gpu/vga/vgaarb.c:1082 [vgaarb]vga_arb_write =_ "vgaarb: pdev %p\012"
    drivers/gpu/vga/vgaarb.c:1079 [vgaarb]vga_arb_write =_ "vgaarb: %s ==> %x:%x:%x.%x\012"
    drivers/gpu/vga/vgaarb.c:1068 [vgaarb]vga_arb_write =_ "client 0x%p called 'target'\012"
    drivers/gpu/vga/vgaarb.c:1025 [vgaarb]vga_arb_write =_ "client 0x%p called 'trylock'\012"
    drivers/gpu/vga/vgaarb.c:969 [vgaarb]vga_arb_write =_ "client 0x%p called 'unlock'\012"
    drivers/gpu/vga/vgaarb.c:933 [vgaarb]vga_arb_write =_ "client 0x%p called 'lock'\012"
    drivers/gpu/vga/vgaarb.c:1157 [vgaarb]vga_arb_fpoll =_ "%s\012"
    drivers/gpu/vga/vgaarb.c:1170 [vgaarb]vga_arb_open =_ "%s\012"
    drivers/gpu/vga/vgaarb.c:1211 [vgaarb]vga_arb_release =_ "uc->io_cnt == %d, uc->mem_cnt == %d\012"
    drivers/gpu/vga/vgaarb.c:1199 [vgaarb]vga_arb_release =_ "%s\012"
    drivers/gpu/vga/vgaarb.c:1263 [vgaarb]pci_notify =_ "%s\012"
    drivers/gpu/vga/vgaarb.c:189 [vgaarb]__vga_tryget =_ "%s: owns: %d\012"
    drivers/gpu/vga/vgaarb.c:188 [vgaarb]__vga_tryget =_ "%s: %d\012"
    drivers/gpu/vga/vgaarb.c:323 [vgaarb]__vga_put =_ "%s\012"
    drivers/gpu/vga/vgaarb.c:676 [vgaarb]vga_update_device_decodes =_ "vgaarb: decoding count now is: %d\012"
    drivers/base/component.c:473 [component]component_add =_ "adding component (ops %ps)\012"
    drivers/base/component.c:405 [component]component_bind =_ "binding %s (ops %ps)\012"
    drivers/base/core.c:1885 [core]device_move =_ "device: '%s': %s: moving to '%s'\012"
    drivers/base/core.c:1820 [core]device_rename =_ "renaming to %s\012"
    drivers/base/core.c:1584 [core]device_create_release =_ "device: '%s': %s\012"
    drivers/base/core.c:358 [core]dev_uevent =_ "device: '%s': %s: dev_type uevent() returned %d\012"
    drivers/base/core.c:349 [core]dev_uevent =_ "device: '%s': %s: class uevent() returned %d\012"
    drivers/base/core.c:340 [core]dev_uevent =_ "device: '%s': %s: bus uevent() returned %d\012"
    drivers/base/core.c:1249 [core]device_unregister =_ "device: '%s': %s\012"
    drivers/base/core.c:1011 [core]device_add =_ "device: '%s': %s\012"
    drivers/base/bus.c:960 [bus]bus_unregister =_ "bus: '%s': unregistering\012"
    drivers/base/bus.c:931 [bus]bus_register =_ "bus: '%s': registered\012"
    drivers/base/bus.c:750 [bus]bus_remove_driver =_ "bus: '%s': remove driver %s\012"
    drivers/base/bus.c:87 [bus]driver_release =_ "driver: '%s': %s\012"
    drivers/base/bus.c:676 [bus]bus_add_driver =_ "bus: '%s': add driver %s\012"
    drivers/base/bus.c:602 [bus]bus_remove_device =_ "bus: '%s': remove device %s\012"
    drivers/base/bus.c:512 [bus]bus_add_device =_ "bus: '%s': add device %s\012"
    drivers/base/dd.c:116 [dd]driver_deferred_probe_add =_ "Added to deferred list\012"
    drivers/base/dd.c:337 [dd]really_probe =_ "%s: probe of %s rejects match %d\012"
    drivers/base/dd.c:314 [dd]really_probe =_ "bus: '%s': %s: bound device %s to driver %s\012"
    drivers/base/dd.c:285 [dd]really_probe =_ "bus: '%s': %s: probing driver %s with device %s\012"
    drivers/base/dd.c:396 [dd]driver_probe_device =_ "bus: '%s': %s: matched device %s with driver %s\012"
    drivers/base/dd.c:359 [dd]driver_probe_done =_ "%s: probe_count = %d\012"
    drivers/base/dd.c:204 [dd]driver_bound =_ "driver: '%s': %s: bound to device '%s'\012"
    drivers/base/dd.c:101 [dd]deferred_probe_work_func =_ "Retrying from deferred list\012"
    drivers/base/dd.c:126 [dd]driver_deferred_probe_del =_ "Removed from deferred list\012"
    drivers/base/syscore.c:54 [syscore]syscore_suspend =_ "Checking wakeup interrupts\012"
    drivers/base/class.c:220 [class]class_create_release =_ "%s called for %s\012"
    drivers/base/class.c:213 [class]class_unregister =_ "device class '%s': unregistering\012"
    drivers/base/class.c:61 [class]class_release =_ "class '%s' does not have a release() function, be careful\012"
    drivers/base/class.c:55 [class]class_release =_ "class '%s': release.\012"
    drivers/base/class.c:170 [class]__class_register =_ "device class '%s': registering\012"
    drivers/base/platform.c:364 [platform]platform_device_add =_ "Registering platform device '%s'. Parent at %s\012"
    drivers/base/power/main.c:348 [main]pm_dev_dbg =_ "%s%s%s\012"
    drivers/base/power/main.c:186 [main]device_pm_move_last =_ "PM: Moving %s:%s to end of list\012"
    drivers/base/power/main.c:174 [main]device_pm_move_after =_ "PM: Moving %s:%s after %s:%s\012"
    drivers/base/power/main.c:160 [main]device_pm_move_before =_ "PM: Moving %s:%s before %s:%s\012"
    drivers/base/power/main.c:142 [main]device_pm_remove =_ "PM: Removing info for %s:%s\012"
    drivers/base/power/main.c:126 [main]device_pm_add =_ "PM: Adding info for %s:%s\012"
    drivers/base/power/clock_ops.c:338 [clock_ops]pm_clk_notify =_ "%s() %ld\012"
    drivers/base/power/clock_ops.c:299 [clock_ops]pm_clk_resume =_ "%s()\012"
    drivers/base/power/clock_ops.c:269 [clock_ops]pm_clk_suspend =_ "%s()\012"
    drivers/base/power/clock_ops.c:70 [clock_ops]pm_clk_acquire =_ "Clock %s managed by runtime PM.\012"
    drivers/base/firmware_class.c:1376 [firmware_class]uncache_firmware =_ "%s: %s\012"
    drivers/base/firmware_class.c:1581 [firmware_class]device_uncache_fw_images =_ "%s\012"
    drivers/base/firmware_class.c:1343 [firmware_class]cache_firmware =_ "%s: %s ret=%d\012"
    drivers/base/firmware_class.c:1337 [firmware_class]cache_firmware =_ "%s: %s\012"
    drivers/base/firmware_class.c:1546 [firmware_class]device_cache_fw_images =_ "%s\012"
    drivers/base/firmware_class.c:245 [firmware_class]__fw_free_buf =_ "%s: fw-%s buf=%p data=%p size=%u\012"
    drivers/base/firmware_class.c:1429 [firmware_class]fw_cache_piggyback_on_request =_ "%s: fw: %s\012"
    drivers/base/firmware_class.c:394 [firmware_class]fw_name_devm_release =_ "%s: fw_name-%s devm-%p released\012"
    drivers/base/firmware_class.c:919 [firmware_class]_request_firmware_load =_ "firmware: requesting %s\012"
    drivers/base/firmware_class.c:351 [firmware_class]fw_get_filesystem_firmware =_ "firmware: direct-loading firmware %s\012"
    drivers/base/firmware_class.c:384 [firmware_class]fw_set_page_data =_ "%s: fw-%s buf=%p data=%p size=%u\012"
    drivers/base/firmware_class.c:197 [firmware_class]__allocate_fw_buf =_ "%s: fw-%s buf=%p\012"
    drivers/base/firmware_class.c:1033 [firmware_class]_request_firmware_prepare =_ "firmware: using built-in firmware %s\012"
    drivers/base/firmware_class.c:1120 [firmware_class]_request_firmware =_ "firmware: %s loading timed out\012"
    drivers/base/regmap/regmap.c:1245 [regmap]_regmap_raw_write =_ "Writing window %d/%zu\012"
    drivers/base/regmap/regcache.c:633 [regcache]regcache_sync_block_single =_ "Synced register %#x, value %#x\012"
    drivers/base/regmap/regcache.c:651 [regcache]regcache_sync_block_raw_flush =_ "Writing %zu bytes for %d registers from 0x%x-0x%x\012"
    drivers/base/regmap/regcache.c:382 [regcache]regcache_sync_region =_ "Syncing %s cache from %d-%d\012"
    drivers/base/regmap/regcache.c:282 [regcache]regcache_default_sync =_ "Synced register %#x, value %#x\012"
    drivers/base/regmap/regcache.c:312 [regcache]regcache_sync =_ "Syncing %s cache\012"
    drivers/base/regmap/regcache.c:193 [regcache]regcache_exit =_ "Destroying %s cache\012"
    drivers/base/regmap/regcache.c:165 [regcache]regcache_init =_ "Initializing %s cache\012"
    drivers/base/regmap/regcache-lzo.c:364 [regcache_lzo]regcache_lzo_sync =_ "Synced register %#x, value %#x\012"
    drivers/base/pinctrl.c:67 [pinctrl]pinctrl_bind_pins =_ "no idle pinctrl state\012"
    drivers/base/pinctrl.c:61 [pinctrl]pinctrl_bind_pins =_ "no sleep pinctrl state\012"
    drivers/base/pinctrl.c:47 [pinctrl]pinctrl_bind_pins =_ "failed to activate default pinctrl state\012"
    drivers/base/pinctrl.c:40 [pinctrl]pinctrl_bind_pins =_ "no default pinctrl state\012"
    drivers/base/pinctrl.c:32 [pinctrl]pinctrl_bind_pins =_ "no pinctrl handle\012"
    drivers/block/xen-blkfront.c:360 [xen_blkfront]blkif_ioctl =_ "FIXME: support multisession CDs later\012"
    drivers/block/xen-blkfront.c:356 [xen_blkfront]blkif_ioctl =_ "command: 0x%x, argument: 0x%lx\012"
    drivers/block/xen-blkfront.c:1804 [xen_blkfront]blkfront_connect =_ "%s:%s.\012"
    drivers/block/xen-blkfront.c:1905 [xen_blkfront]blkback_changed =_ "blkfront:blkback_changed to state %d.\012"
    drivers/block/xen-blkfront.c:1936 [xen_blkfront]blkfront_remove =_ "%s removed"
    drivers/block/xen-blkfront.c:637 [xen_blkfront]do_blkif_request =_ "do_blk_req %p: cmd %p, sec %lx, (%u/%u) [%s]\012"
    drivers/block/xen-blkfront.c:616 [xen_blkfront]do_blkif_request =_ "Entered do_blkif_request\012"
    drivers/block/xen-blkfront.c:1217 [xen_blkfront]blkif_interrupt =_ "Bad return from blkdev data request: %x\012"
    drivers/block/xen-blkfront.c:1606 [xen_blkfront]blkfront_resume =_ "blkfront_resume: %s\012"
    drivers/misc/sram.c:182 [sram]sram_probe =_ "SRAM pool: %ld KiB @ 0x%p\012"
    drivers/misc/sram.c:167 [sram]sram_probe =_ "adding chunk 0x%lx-0x%lx\012"
    drivers/misc/sram.c:199 [sram]sram_remove =_ "removed while SRAM allocated\012"
    drivers/mfd/88pm860x-core.c:731 [88pm860x]pm8606_osc_disable =_ "%s(A): vote=0x%x status=%d ret=%d\012"
    drivers/mfd/88pm860x-core.c:709 [88pm860x]pm8606_osc_disable =_ "%s(B): vote=0x%x status=%d\012"
    drivers/mfd/88pm860x-core.c:706 [88pm860x]pm8606_osc_disable =_ "%s(B): client=0x%x\012"
    drivers/mfd/88pm860x-core.c:692 [88pm860x]pm8606_osc_enable =_ "%s(A): vote=0x%x status=%d ret=%d\012"
    drivers/mfd/88pm860x-core.c:668 [88pm860x]pm8606_osc_enable =_ "%s(B): vote=0x%x status=%d\012"
    drivers/mfd/88pm860x-core.c:665 [88pm860x]pm8606_osc_enable =_ "%s(B): client=0x%x\012"
    drivers/mfd/htc-i2cpld.c:90 [htc_i2cpld]htcpld_mask =_ "HTCPLD mask %d %04x\012"
    drivers/mfd/htc-i2cpld.c:96 [htc_i2cpld]htcpld_unmask =_ "HTCPLD unmask %d %04x\012"
    drivers/mfd/htc-i2cpld.c:202 [htc_i2cpld]htcpld_handler =_ "fire IRQ %d\012"
    drivers/mfd/htc-i2cpld.c:161 [htc_i2cpld]htcpld_handler =_ "client %d is null in ISR\012"
    drivers/mfd/htc-i2cpld.c:152 [htc_i2cpld]htcpld_handler =_ "chip %d is null in ISR\012"
    drivers/mfd/htc-i2cpld.c:134 [htc_i2cpld]htcpld_handler =_ "htcpld is null in ISR\012"
    drivers/mfd/arizona-core.c:442 [arizona_core]arizona_suspend =_ "Suspend, disabling IRQ\012"
    drivers/mfd/arizona-core.c:472 [arizona_core]arizona_resume =_ "Late resume, reenabling IRQ\012"
    drivers/mfd/arizona-core.c:452 [arizona_core]arizona_suspend_late =_ "Late suspend, reenabling IRQ\012"
    drivers/mfd/arizona-core.c:462 [arizona_core]arizona_resume_noirq =_ "Early resume, disabling IRQ\012"
    drivers/mfd/arizona-core.c:415 [arizona_core]arizona_runtime_suspend =_ "Entering AoD mode\012"
    drivers/mfd/arizona-core.c:339 [arizona_core]arizona_runtime_resume =_ "Leaving AoD mode\012"
    drivers/mfd/arizona-irq.c:76 [arizona_irq]arizona_boot_done =_ "Boot done\012"
    drivers/mfd/wm831x-irq.c:362 [wm831x]wm831x_irq_sync_unlock =_ "IRQ mask sync: %x = %x\012"
    drivers/mfd/twl-core.c:649 [twl_core]add_numbered_child =_ "can't add irqs\012"
    drivers/mfd/twl-core.c:636 [twl_core]add_numbered_child =_ "can't add platform_data\012"
    drivers/mfd/twl-core.c:626 [twl_core]add_numbered_child =_ "can't alloc dev\012"
    drivers/mfd/twl-core.c:1119 [twl_core]twl_probe =_ "can't talk I2C?\012"
    drivers/mfd/twl-core.c:1102 [twl_core]twl_probe =_ "only one instance of %s allowed\012"
    drivers/mfd/ab3100-core.c:444 [ab3100_core]ab3100_irq_handler =_ "error reading event status\012"
    drivers/mfd/ab3100-core.c:438 [ab3100_core]ab3100_irq_handler =_ "IRQ Event: 0x%08x\012"
    drivers/mfd/aat2870-core.c:163 [aat2870_core]__aat2870_write =_ "write: addr=0x%02x, val=0x%02x\012"
    drivers/mfd/aat2870-core.c:133 [aat2870_core]__aat2870_read =_ "read: addr=0x%02x, val=0x%02x\012"
    drivers/mfd/syscon.c:209 [syscon]syscon_probe =_ "regmap %pR registered\012"
    drivers/mfd/as3711.c:135 [as3711]as3711_i2c_probe =_ "Platform data not found\012"
    drivers/dma-buf/dma-buf.c:863 [dma_buf]dma_buf_init_debugfs =_ "dma_buf: debugfs: failed to create node bufinfo\012"
    drivers/scsi/scsi_pm.c:66 [scsi_mod]scsi_dev_type_suspend =_ "scsi suspend: %d\012"
    drivers/scsi/scsi_pm.c:78 [scsi_mod]scsi_dev_type_resume =_ "scsi resume: %d\012"
    drivers/scsi/scsi_pm.c:236 [scsi_mod]scsi_runtime_suspend =_ "scsi_runtime_suspend\012"
    drivers/scsi/scsi_pm.c:263 [scsi_mod]scsi_runtime_resume =_ "scsi_runtime_resume\012"
    drivers/scsi/scsi_pm.c:274 [scsi_mod]scsi_runtime_idle =_ "scsi_runtime_idle\012"
    drivers/spi/spi.c:1866 [spi]spi_setup =_ "setup mode %d, %s%s%s%s%u bits/w, %u Hz max --> %d\012"
    drivers/spi/spi.c:1628 [spi]spi_register_master =_ "registered master %s%s\012"
    drivers/spi/spi.c:460 [spi]spi_add_device =_ "registered child %s\012"
    drivers/spi/spi.c:147 [spi]spi_legacy_suspend =_ "... can't suspend\012"
    drivers/spi/spi.c:162 [spi]spi_legacy_resume =_ "... can't resume\012"
    drivers/net/phy/phy_device.c:1301 [libphy]phy_driver_register =_ "%s: Registered new driver\012"
    drivers/net/tun.c:1170 [tun]tun_get_user =_ "GSO!\012"
    drivers/net/virtio_net.c:831 [virtio_net]free_old_xmit_skbs =_ "Sent skb %p\012"
    drivers/net/virtio_net.c:851 [virtio_net]xmit_skb =_ "%s: xmit %p %pM\012"
    drivers/net/virtio_net.c:1875 [virtio_net]virtnet_probe =_ "virtnet: registered device %s with %d RX and TX vq's\012"
    drivers/net/virtio_net.c:1860 [virtio_net]virtnet_probe =_ "virtio_net: registering cpu notifier failed\012"
    drivers/net/virtio_net.c:1838 [virtio_net]virtnet_probe =_ "virtio_net: registering device failed\012"
    drivers/net/virtio_net.c:294 [virtio_net]page_to_skb =_ "%s: too much data\012"
    drivers/net/virtio_net.c:419 [virtio_net]receive_mergeable =_ "%s: rx error: %d buffers missing\012"
    drivers/net/virtio_net.c:371 [virtio_net]receive_mergeable =_ "%s: rx error: %d buffers out of %d missing\012"
    drivers/net/virtio_net.c:487 [virtio_net]receive_buf =_ "GSO!\012"
    drivers/net/virtio_net.c:484 [virtio_net]receive_buf =_ "Receiving skb proto 0x%04x len %i type %i\012"
    drivers/net/virtio_net.c:473 [virtio_net]receive_buf =_ "Needs csum!\012"
    drivers/net/virtio_net.c:441 [virtio_net]receive_buf =_ "%s: short packet %i\012"
    drivers/net/xen-netfront.c:603 [xen_netfront]xennet_start_xmit =_ "xennet: skb rides the rocket: %d slots, %d bytes\012"
    drivers/net/xen-netfront.c:2034 [xen_netfront]netback_changed =_ "%s\012"
    drivers/net/xen-netfront.c:2186 [xen_netfront]xennet_remove =_ "%s\012"
    drivers/net/xen-netfront.c:1443 [xen_netfront]netfront_resume =_ "%s\012"
    drivers/cdrom/cdrom.c:2740 [cdrom]cdrom_ioctl_audioctl =_ "doing audio ioctl (start/stop/pause/resume)\012"
    drivers/cdrom/cdrom.c:2721 [cdrom]cdrom_ioctl_volread =_ "entering CDROMVOLREAD\012"
    drivers/cdrom/cdrom.c:2706 [cdrom]cdrom_ioctl_volctrl =_ "entering CDROMVOLCTRL\012"
    drivers/cdrom/cdrom.c:1241 [cdrom]check_for_audio_disc =_ "the tray is now closed\012"
    drivers/cdrom/cdrom.c:1238 [cdrom]check_for_audio_disc =_ "bummer. disc isn't ready.\012"
    drivers/cdrom/cdrom.c:1234 [cdrom]check_for_audio_disc =_ "bummer. the tray is still not closed.\012"
    drivers/cdrom/cdrom.c:1228 [cdrom]check_for_audio_disc =_ "bummer. this driver can't close the tray.\012"
    drivers/cdrom/cdrom.c:1219 [cdrom]check_for_audio_disc =_ "bummer. tried to close tray but failed.\012"
    drivers/cdrom/cdrom.c:1216 [cdrom]check_for_audio_disc =_ "trying to close the tray\012"
    drivers/cdrom/cdrom.c:1212 [cdrom]check_for_audio_disc =_ "the tray is open...\012"
    drivers/cdrom/cdrom.c:1210 [cdrom]check_for_audio_disc =_ "drive_status=%d\012"
    drivers/cdrom/cdrom.c:1205 [cdrom]check_for_audio_disc =_ "entering check_for_audio_disc\012"
    drivers/cdrom/cdrom.c:2689 [cdrom]cdrom_ioctl_play_trkind =_ "entering CDROMPLAYTRKIND\012"
    drivers/cdrom/cdrom.c:2674 [cdrom]cdrom_ioctl_play_msf =_ "entering CDROMPLAYMSF\012"
    drivers/cdrom/cdrom.c:3246 [cdrom]mmc_ioctl_cdrom_last_written =_ "entering CDROM_LAST_WRITTEN\012"
    drivers/cdrom/cdrom.c:3232 [cdrom]mmc_ioctl_cdrom_next_writable =_ "entering CDROM_NEXT_WRITABLE\012"
    drivers/cdrom/cdrom.c:1781 [cdrom]dvd_do_auth =_ "Invalid DVD key ioctl (%d)\012"
    drivers/cdrom/cdrom.c:1771 [cdrom]dvd_do_auth =_ "entering DVD_HOST_SEND_RPC_STATE\012"
    drivers/cdrom/cdrom.c:1754 [cdrom]dvd_do_auth =_ "entering DVD_LU_SEND_RPC_STATE\012"
    drivers/cdrom/cdrom.c:1746 [cdrom]dvd_do_auth =_ "entering DVD_INVALIDATE_AGID\012"
    drivers/cdrom/cdrom.c:1731 [cdrom]dvd_do_auth =_ "entering DVD_HOST_SEND_KEY2\012"
    drivers/cdrom/cdrom.c:1719 [cdrom]dvd_do_auth =_ "entering DVD_HOST_SEND_CHALLENGE\012"
    drivers/cdrom/cdrom.c:1708 [cdrom]dvd_do_auth =_ "entering DVD_LU_SEND_ASF\012"
    drivers/cdrom/cdrom.c:1689 [cdrom]dvd_do_auth =_ "entering DVD_LU_SEND_TITLE_KEY\012"
    drivers/cdrom/cdrom.c:1677 [cdrom]dvd_do_auth =_ "entering DVD_LU_SEND_CHALLENGE\012"
    drivers/cdrom/cdrom.c:1666 [cdrom]dvd_do_auth =_ "entering DVD_LU_SEND_KEY1\012"
    drivers/cdrom/cdrom.c:1654 [cdrom]dvd_do_auth =_ "entering DVD_LU_SEND_AGID\012"
    drivers/cdrom/cdrom.c:3216 [cdrom]mmc_ioctl_dvd_auth =_ "entering DVD_AUTH\012"
    drivers/cdrom/cdrom.c:1956 [cdrom]dvd_read_manufact =_ "Received invalid manufacture info length (%d): truncating to 2048\012"
    drivers/cdrom/cdrom.c:1914 [cdrom]dvd_read_bca =_ "Received invalid BCA length (%d)\012"
    drivers/cdrom/cdrom.c:1988 [cdrom]dvd_read_struct =_ ": Invalid DVD structure read requested (%d)\012"
    drivers/cdrom/cdrom.c:3192 [cdrom]mmc_ioctl_dvd_read_struct =_ "entering DVD_READ_STRUCT\012"
    drivers/cdrom/cdrom.c:3170 [cdrom]mmc_ioctl_cdrom_pause_resume =_ "entering CDROMPAUSE/CDROMRESUME\012"
    drivers/cdrom/cdrom.c:3157 [cdrom]mmc_ioctl_cdrom_start_stop =_ "entering CDROMSTART/CDROMSTOP\012"
    drivers/cdrom/cdrom.c:3088 [cdrom]mmc_ioctl_cdrom_volume =_ "entering CDROMVOLUME\012"
    drivers/cdrom/cdrom.c:3063 [cdrom]mmc_ioctl_cdrom_play_blk =_ "entering CDROMPLAYBLK\012"
    drivers/cdrom/cdrom.c:3043 [cdrom]mmc_ioctl_cdrom_play_msf =_ "entering CDROMPLAYMSF\012"
    drivers/cdrom/cdrom.c:2585 [cdrom]cdrom_ioctl_changer_nslots =_ "entering CDROM_CHANGER_NSLOTS\012"
    drivers/cdrom/cdrom.c:2579 [cdrom]cdrom_ioctl_disc_status =_ "This disc doesn't have any tracks I recognize!\012"
    drivers/cdrom/cdrom.c:2557 [cdrom]cdrom_ioctl_disc_status =_ "entering CDROM_DISC_STATUS\012"
    drivers/cdrom/cdrom.c:1329 [cdrom]cdrom_slot_status =_ "entering cdrom_slot_status()\012"
    drivers/cdrom/cdrom.c:2524 [cdrom]cdrom_ioctl_drive_status =_ "entering CDROM_DRIVE_STATUS\012"
    drivers/cdrom/cdrom.c:2517 [cdrom]cdrom_ioctl_get_mcn =_ "CDROM_GET_MCN successful\012"
    drivers/cdrom/cdrom.c:2507 [cdrom]cdrom_ioctl_get_mcn =_ "entering CDROM_GET_MCN\012"
    drivers/cdrom/cdrom.c:2491 [cdrom]cdrom_ioctl_get_capability =_ "entering CDROM_GET_CAPABILITY\012"
    drivers/cdrom/cdrom.c:2481 [cdrom]cdrom_ioctl_debug =_ "%sabling debug\012"
    drivers/cdrom/cdrom.c:2462 [cdrom]cdrom_ioctl_lock_door =_ "%socking door\012"
    drivers/cdrom/cdrom.c:2449 [cdrom]cdrom_ioctl_reset =_ "entering CDROM_RESET\012"
    drivers/cdrom/cdrom.c:1380 [cdrom]cdrom_load_unload =_ "entering cdrom_load_unload()\012"
    drivers/cdrom/cdrom.c:1409 [cdrom]cdrom_select_disc =_ "entering cdrom_select_disc()\012"
    drivers/cdrom/cdrom.c:2442 [cdrom]cdrom_ioctl_select_disc =_ "Using generic cdrom_select_disc()\012"
    drivers/cdrom/cdrom.c:2424 [cdrom]cdrom_ioctl_select_disc =_ "entering CDROM_SELECT_DISC\012"
    drivers/cdrom/cdrom.c:2414 [cdrom]cdrom_ioctl_select_speed =_ "entering CDROM_SELECT_SPEED\012"
    drivers/cdrom/cdrom.c:2405 [cdrom]cdrom_ioctl_clear_options =_ "entering CDROM_CLEAR_OPTIONS\012"
    drivers/cdrom/cdrom.c:2377 [cdrom]cdrom_ioctl_set_options =_ "entering CDROM_SET_OPTIONS\012"
    drivers/cdrom/cdrom.c:2351 [cdrom]cdrom_ioctl_media_changed =_ "entering CDROM_MEDIA_CHANGED\012"
    drivers/cdrom/cdrom.c:2332 [cdrom]cdrom_ioctl_eject_sw =_ "entering CDROMEJECT_SW\012"
    drivers/cdrom/cdrom.c:2322 [cdrom]cdrom_ioctl_closetray =_ "entering CDROMCLOSETRAY\012"
    drivers/cdrom/cdrom.c:2305 [cdrom]cdrom_ioctl_eject =_ "entering CDROMEJECT\012"
    drivers/cdrom/cdrom.c:2299 [cdrom]cdrom_ioctl_multisession =_ "CDROMMULTISESSION successful\012"
    drivers/cdrom/cdrom.c:2277 [cdrom]cdrom_ioctl_multisession =_ "entering CDROMMULTISESSION\012"
    drivers/cdrom/cdrom.c:1359 [cdrom]cdrom_number_of_slots =_ "entering cdrom_number_of_slots()\012"
    drivers/cdrom/cdrom.c:951 [cdrom]cdrom_dvd_rw_close_write =_ "%s: DVD+RW media clean\012"
    drivers/cdrom/cdrom.c:946 [cdrom]cdrom_dvd_rw_close_write =_ "%s: No DVD+RW\012"
    drivers/cdrom/cdrom.c:1270 [cdrom]cdrom_release =_ "Unlocking door!\012"
    drivers/cdrom/cdrom.c:1266 [cdrom]cdrom_release =_ "Use count for \042/dev/%s\042 now zero\012"
    drivers/cdrom/cdrom.c:1259 [cdrom]cdrom_release =_ "entering cdrom_release\012"
    drivers/cdrom/cdrom.c:857 [cdrom]cdrom_ram_open_write =_ "can open for random write\012"
    drivers/cdrom/cdrom.c:1031 [cdrom]cdrom_count_tracks =_ "disc has %d tracks: %d=audio %d=data %d=Cd-I %d=XA\012"
    drivers/cdrom/cdrom.c:1027 [cdrom]cdrom_count_tracks =_ "track %d: format=%d, ctrl=%d\012"
    drivers/cdrom/cdrom.c:998 [cdrom]cdrom_count_tracks =_ "entering cdrom_count_tracks\012"
    drivers/cdrom/cdrom.c:1136 [cdrom]open_for_data =_ "door unlocked\012"
    drivers/cdrom/cdrom.c:1133 [cdrom]open_for_data =_ "open failed\012"
    drivers/cdrom/cdrom.c:1124 [cdrom]open_for_data =_ "device opened successfully\012"
    drivers/cdrom/cdrom.c:1122 [cdrom]open_for_data =_ "door locked\012"
    drivers/cdrom/cdrom.c:1117 [cdrom]open_for_data =_ "open device failed\012"
    drivers/cdrom/cdrom.c:1112 [cdrom]open_for_data =_ "opening the device gave me %d\012"
    drivers/cdrom/cdrom.c:1108 [cdrom]open_for_data =_ "all seems well, opening the devicen"
    drivers/cdrom/cdrom.c:1104 [cdrom]open_for_data =_ "wrong media type, but CDO_CHECK_TYPE not set\012"
    drivers/cdrom/cdrom.c:1099 [cdrom]open_for_data =_ "pid %d must open device O_NONBLOCK!\012"
    drivers/cdrom/cdrom.c:1097 [cdrom]open_for_data =_ "bummer. wrong media type.\012"
    drivers/cdrom/cdrom.c:1087 [cdrom]open_for_data =_ "bummer. no disc.\012"
    drivers/cdrom/cdrom.c:1076 [cdrom]open_for_data =_ "the tray is now closed\012"
    drivers/cdrom/cdrom.c:1072 [cdrom]open_for_data =_ "tray might not contain a medium\012"
    drivers/cdrom/cdrom.c:1071 [cdrom]open_for_data =_ "bummer. the tray is still not closed.\012"
    drivers/cdrom/cdrom.c:1064 [cdrom]open_for_data =_ "bummer. this drive can't close the tray.\012"
    drivers/cdrom/cdrom.c:1054 [cdrom]open_for_data =_ "bummer. tried to close the tray but failed.\012"
    drivers/cdrom/cdrom.c:1051 [cdrom]open_for_data =_ "trying to close the tray\012"
    drivers/cdrom/cdrom.c:1047 [cdrom]open_for_data =_ "the tray is open...\012"
    drivers/cdrom/cdrom.c:1045 [cdrom]open_for_data =_ "drive_status=%d\012"
    drivers/cdrom/cdrom.c:1040 [cdrom]open_for_data =_ "entering open_for_data\012"
    drivers/cdrom/cdrom.c:1189 [cdrom]cdrom_open =_ "door unlocked\012"
    drivers/cdrom/cdrom.c:1184 [cdrom]cdrom_open =_ "Use count for \042/dev/%s\042 now %d\012"
    drivers/cdrom/cdrom.c:1154 [cdrom]cdrom_open =_ "entering cdrom_open\012"
    drivers/cdrom/cdrom.c:656 [cdrom]unregister_cdrom =_ "drive \042/dev/%s\042 unregistered\012"
    drivers/cdrom/cdrom.c:646 [cdrom]unregister_cdrom =_ "entering unregister_cdrom\012"
    drivers/cdrom/cdrom.c:636 [cdrom]register_cdrom =_ "drive \042/dev/%s\042 registered\012"
    drivers/cdrom/cdrom.c:592 [cdrom]register_cdrom =_ "entering register_cdrom\012"
    drivers/usb/core/hub.c:5667 [usbcore]usb_hub_adjust_deviceremovable =_ "DeviceRemovable is changed to 1 according to platform information.\012"
    drivers/usb/core/hub.c:5651 [usbcore]usb_hub_adjust_deviceremovable =_ "DeviceRemovable is changed to 1 according to platform information.\012"
    drivers/usb/core/hub.c:5503 [usbcore]usb_reset_device =_ "%s for root hub!\012"
    drivers/usb/core/hub.c:5497 [usbcore]usb_reset_device =_ "device reset not allowed in state %d\012"
    drivers/usb/core/hub.c:649 [usbcore]hub_irq =_ "transfer --> %d\012"
    drivers/usb/core/hub.c:1569 [usbcore]hub_configure =_ "%sover-current condition exists\012"
    drivers/usb/core/hub.c:1565 [usbcore]hub_configure =_ "local power source is %s\012"
    drivers/usb/core/hub.c:1553 [usbcore]hub_configure =_ "%umA bus power budget for each child\012"
    drivers/usb/core/hub.c:1537 [usbcore]hub_configure =_ "hub controller current requirement: %dmA\012"
    drivers/usb/core/hub.c:1510 [usbcore]hub_configure =_ "power on to power good time: %dms\012"
    drivers/usb/core/hub.c:1506 [usbcore]hub_configure =_ "Port indicators are supported\012"
    drivers/usb/core/hub.c:1499 [usbcore]hub_configure =_ "TT requires at most %d FS bit times (%d ns)\012"
    drivers/usb/core/hub.c:1493 [usbcore]hub_configure =_ "TT requires at most %d FS bit times (%d ns)\012"
    drivers/usb/core/hub.c:1487 [usbcore]hub_configure =_ "TT requires at most %d FS bit times (%d ns)\012"
    drivers/usb/core/hub.c:1480 [usbcore]hub_configure =_ "TT requires at most %d FS bit times (%d ns)\012"
    drivers/usb/core/hub.c:1469 [usbcore]hub_configure =_ "Unrecognized hub protocol %d\012"
    drivers/usb/core/hub.c:1457 [usbcore]hub_configure =_ "TT per port\012"
    drivers/usb/core/hub.c:1451 [usbcore]hub_configure =_ "Single TT\012"
    drivers/usb/core/hub.c:1440 [usbcore]hub_configure =_ "no over-current protection\012"
    drivers/usb/core/hub.c:1436 [usbcore]hub_configure =_ "individual port over-current protection\012"
    drivers/usb/core/hub.c:1433 [usbcore]hub_configure =_ "global over-current protection\012"
    drivers/usb/core/hub.c:1427 [usbcore]hub_configure =_ "no power switching (usb 1.0)\012"
    drivers/usb/core/hub.c:1423 [usbcore]hub_configure =_ "individual port power switching\012"
    drivers/usb/core/hub.c:1420 [usbcore]hub_configure =_ "ganged power switching\012"
    drivers/usb/core/hub.c:1416 [usbcore]hub_configure =_ "standalone hub\012"
    drivers/usb/core/hub.c:1414 [usbcore]hub_configure =_ "compound device; port removable status: %s\012"
    drivers/usb/core/hub.c:4792 [usbcore]hub_port_connect =_ "%dmA power budget left\012"
    drivers/usb/core/hub.c:4726 [usbcore]hub_port_connect =_ "get status %d ?\012"
    drivers/usb/core/hub.c:437 [usbcore]set_port_led =_ "indicator %s status %d\012"
    drivers/usb/core/hub.c:4838 [usbcore]hub_port_connect_change =_ "status %04x, change %04x, %s\012"
    drivers/usb/core/hub.c:3511 [usbcore]hub_handle_remote_wakeup =_ "resume, status %d\012"
    drivers/usb/core/hub.c:4967 [usbcore]port_event =_ "do warm reset\012"
    drivers/usb/core/hub.c:4945 [usbcore]port_event =_ "link state change\012"
    drivers/usb/core/hub.c:4940 [usbcore]port_event =_ "warm reset change\012"
    drivers/usb/core/hub.c:4935 [usbcore]port_event =_ "reset change\012"
    drivers/usb/core/hub.c:4924 [usbcore]port_event =_ "over-current change\012"
    drivers/usb/core/hub.c:4906 [usbcore]port_event =_ "enable change, status %08x\012"
    drivers/usb/core/hub.c:5105 [usbcore]hub_event =_ "over-current change\012"
    drivers/usb/core/hub.c:5093 [usbcore]hub_event =_ "power change\012"
    drivers/usb/core/hub.c:5053 [usbcore]hub_event =_ "error resetting hub: %d\012"
    drivers/usb/core/hub.c:5049 [usbcore]hub_event =_ "resetting for error %d\012"
    drivers/usb/core/hub.c:5040 [usbcore]hub_event =_ "Can't autoresume: %d\012"
    drivers/usb/core/hub.c:5022 [usbcore]hub_event =_ "state %d ports %d chg %04x evt %04x\012"
    drivers/usb/core/hub.c:1796 [usbcore]hub_probe =_ "couldn't kmalloc hub struct\012"
    drivers/usb/core/hub.c:3588 [usbcore]hub_suspend =_ "%s\012"
    drivers/usb/core/hub.c:3599 [usbcore]hub_resume =_ "%s\012"
    drivers/usb/core/hub.c:3608 [usbcore]hub_reset_resume =_ "%s\012"
    drivers/usb/core/hub.c:841 [usbcore]hub_power_on =_ "trying to enable port power on non-switchable hub\012"
    drivers/usb/core/hub.c:838 [usbcore]hub_power_on =_ "enabling power on all ports\012"
    drivers/usb/core/hub.c:1122 [usbcore]hub_activate =_ "status %04x change %04x\012"
    drivers/usb/core/hub.c:4134 [usbcore]hub_port_debounce =_ "debounce total %dms stable %dms status 0x%x\012"
    drivers/usb/core/hub.c:3680 [usbcore]usb_req_set_sel =_ "Device-initiated %s disabled due to long SEL %llu us or PEL %llu us\012"
    drivers/usb/core/hub.c:3751 [usbcore]usb_set_device_initiated_lpm =_ "%s: Can't %s %s state for unconfigured device.\012"
    drivers/usb/core/hub.c:3463 [usbcore]usb_remote_wakeup =_ "usb %sresume\012"
    drivers/usb/core/hub.c:5270 [usbcore]descriptors_changed =_ "serial string changed\012"
    drivers/usb/core/hub.c:5267 [usbcore]descriptors_changed =_ "serial string error %d\012"
    drivers/usb/core/hub.c:5256 [usbcore]descriptors_changed =_ "config index %d changed (#%d)\012"
    drivers/usb/core/hub.c:5247 [usbcore]descriptors_changed =_ "config index %d, error %d\012"
    drivers/usb/core/hub.c:2669 [usbcore]hub_port_wait_reset =_ "not %sreset yet, waiting %dms\012"
    drivers/usb/core/hub.c:2832 [usbcore]hub_port_reset =_ "not enabled, trying %sreset again...\012"
    drivers/usb/core/hub.c:2825 [usbcore]hub_port_reset =_ "hot reset failed, warm reset\012"
    drivers/usb/core/hub.c:2797 [usbcore]hub_port_reset =_ "port_wait_reset: err = %d\012"
    drivers/usb/core/hub.c:4498 [usbcore]hub_port_init =_ "ep0 maxpacket = %d\012"
    drivers/usb/core/hub.c:4400 [usbcore]hub_port_init =_ "device reset changed speed!\012"
    drivers/usb/core/hub.c:4271 [usbcore]hub_port_init =_ "device reset changed speed!\012"
    drivers/usb/core/hub.c:5326 [usbcore]usb_reset_and_verify_device =_ "device reset not allowed in state %d\012"
    drivers/usb/core/hub.c:3290 [usbcore]finish_port_resume =_ "disable remote wakeup, status %d\012"
    drivers/usb/core/hub.c:3268 [usbcore]finish_port_resume =_ "gone after usb resume? status %d\012"
    drivers/usb/core/hub.c:3260 [usbcore]finish_port_resume =_ "retry with reset-resume\012"
    drivers/usb/core/hub.c:3220 [usbcore]finish_port_resume =_ "%s\012"
    drivers/usb/core/hub.c:2928 [usbcore]check_port_resume_type =_ "status %04x.%04x after resume, %d\012"
    drivers/usb/core/hub.c:3438 [usbcore]usb_port_resume =_ "can't resume, status %d\012"
    drivers/usb/core/hub.c:3402 [usbcore]usb_port_resume =_ "usb %sresume\012"
    drivers/usb/core/hub.c:3398 [usbcore]usb_port_resume =_ "can't resume, status %d\012"
    drivers/usb/core/hub.c:3379 [usbcore]usb_port_resume =_ "can't resume usb port, status %d\012"
    drivers/usb/core/hub.c:3182 [usbcore]usb_port_suspend =_ "usb %ssuspend, wakeup %d\012"
    drivers/usb/core/hub.c:3161 [usbcore]usb_port_suspend =_ "can't suspend, status %d\012"
    drivers/usb/core/hub.c:3114 [usbcore]usb_port_suspend =_ "won't remote wakeup, status %d\012"
    drivers/usb/core/hub.c:2438 [usbcore]usb_new_device =_ "udev %d, busnum %d, minor = %d\012"
    drivers/usb/core/hub.c:2145 [usbcore]usb_disconnect =_ "unregistering device\012"
    drivers/usb/core/hub.c:914 [usbcore]hub_usb3_port_disable =_ "Not disabling port; link state is RxDetect\012"
    drivers/usb/core/hub.c:969 [usbcore]hub_port_logical_disconnect =_ "logical disconnect\012"
    drivers/usb/core/hcd.c:2853 [usbcore]usb_remove_hcd =_ "roothub graceful disconnect\012"
    drivers/usb/core/hcd.c:1030 [usbcore]register_root_hub =_ "can't read %s bos descriptor %d\012"
    drivers/usb/core/hcd.c:1022 [usbcore]register_root_hub =_ "can't read %s device descriptor %d\012"
    drivers/usb/core/hcd.c:2745 [usbcore]usb_add_hcd =_ "supports USB remote wakeup\012"
    drivers/usb/core/hcd.c:2687 [usbcore]usb_add_hcd =_ "pool alloc failed\012"
    drivers/usb/core/hcd.c:2450 [usbcore]usb_create_shared_hcd =_ "hcd bandwidth mutex alloc failed\012"
    drivers/usb/core/hcd.c:2442 [usbcore]usb_create_shared_hcd =_ "hcd alloc failed\012"
    drivers/usb/core/hcd.c:2254 [usbcore]hcd_bus_resume =_ "bus %s fail, err %d\012"
    drivers/usb/core/hcd.c:2213 [usbcore]hcd_bus_resume =_ "skipped %s of dead bus\012"
    drivers/usb/core/hcd.c:2211 [usbcore]hcd_bus_resume =_ "usb %sresume\012"
    drivers/usb/core/hcd.c:2199 [usbcore]hcd_bus_suspend =_ "bus %s fail, err %d\012"
    drivers/usb/core/hcd.c:2186 [usbcore]hcd_bus_suspend =_ "suspend raced with wakeup event\012"
    drivers/usb/core/hcd.c:2165 [usbcore]hcd_bus_suspend =_ "skipped %s of dead bus\012"
    drivers/usb/core/hcd.c:2163 [usbcore]hcd_bus_suspend =_ "bus %ssuspend, wakeup %d\012"
    drivers/usb/core/hcd.c:1825 [usbcore]usb_hcd_flush_endpoint =_ "shutdown urb %p ep%d%s%s\012"
    drivers/usb/core/hcd.c:1643 [usbcore]usb_hcd_unlink_urb =_ "hcd_unlink_urb %p fail %d\012"
    drivers/usb/core/hcd.c:675 [usbcore]rh_call_control =_ "CTRL: TypeReq=0x%x val=0x%x idx=0x%x len=%d ==> %d\012"
    drivers/usb/core/hcd.c:635 [usbcore]rh_call_control =_ "no endpoint features yet\012"
    drivers/usb/core/hcd.c:620 [usbcore]rh_call_control =_ "root hub device address %d\012"
    drivers/usb/core/hcd.c:783 [usbcore]rh_queue_status =_ "not queuing rh status urb\012"
    drivers/usb/core/hcd.c:1141 [usbcore]usb_calc_bus_time =_ "%s: bogus device speed!\012"
    drivers/usb/core/urb.c:391 [usbcore]usb_submit_urb =_ "bogus endpoint ep%d%s in %s (bad maxpacket %d)\012"
    drivers/usb/core/message.c:1893 [usbcore]usb_set_configuration =_ "adding %s (config #%d, interface %d)\012"
    drivers/usb/core/message.c:1355 [usbcore]usb_set_interface =_ "manual set_interface for iface %d, alt %d\012"
    drivers/usb/core/message.c:1304 [usbcore]usb_set_interface =_ "selecting invalid interface %d\012"
    drivers/usb/core/message.c:1194 [usbcore]usb_disable_device =_ "%s nuking %s URBs\012"
    drivers/usb/core/message.c:1170 [usbcore]usb_disable_device =_ "unregistering interface %s\012"
    drivers/usb/core/message.c:791 [usbcore]usb_get_langid =_ "default language 0x%04x\012"
    drivers/usb/core/message.c:842 [usbcore]usb_string =_ "wrong descriptor type %02x for string %d (\042%s\042)\012"
    drivers/usb/core/message.c:548 [usbcore]usb_sg_wait =_ "%s, submit --> %d\012"
    drivers/usb/core/message.c:67 [usbcore]usb_start_wait_urb =_ "%s timed out on ep%d%s len=%u/%u\012"
    drivers/usb/core/driver.c:837 [usbcore]usb_uevent =_ "usb %s: bus removed?\012"
    drivers/usb/core/driver.c:833 [usbcore]usb_uevent =_ "usb %s: already deleted?\012"
    drivers/usb/core/driver.c:1791 [usbcore]autosuspend_check =_ "HCD doesn't handle wakeup requests\012"
    drivers/usb/core/driver.c:1780 [usbcore]autosuspend_check =_ "remote wakeup needed for autosuspend\012"
    drivers/usb/core/driver.c:1237 [usbcore]usb_resume_interface =_ "no reset_resume for driver %s?\012"
    drivers/usb/core/driver.c:1004 [usbcore]usb_forced_unbind_intf =_ "forced unbind\012"
    drivers/usb/core/driver.c:306 [usbcore]usb_probe_interface =_ "%s - got id\012"
    drivers/usb/core/driver.c:288 [usbcore]usb_probe_interface =_ "%s\012"
    drivers/usb/core/driver.c:251 [usbcore]usb_probe_device =_ "%s\012"
    drivers/usb/core/config.c:288 [usbcore]usb_parse_endpoint =_ "skipped %d descriptor%s after %s\012"
    drivers/usb/core/config.c:367 [usbcore]usb_parse_interface =_ "skipped %d descriptor%s after %s\012"
    drivers/usb/core/config.c:592 [usbcore]usb_parse_configuration =_ "skipped %d descriptor%s after %s\012"
    drivers/usb/core/file.c:234 [usbcore]usb_deregister_dev =_ "removing %d minor\012"
    drivers/usb/core/file.c:178 [usbcore]usb_register_dev =_ "looking for a minor, starting at %d\012"
    drivers/usb/core/devio.c:2079 [usbcore]proc_disconnect_claim =_ "disconnect by usbfs\012"
    drivers/usb/core/devio.c:1949 [usbcore]proc_ioctl =_ "disconnect by usbfs\012"
    drivers/usb/core/generic.c:149 [usbcore]usb_choose_configuration =_ "configuration #%d chosen from %d choice%s\012"
    drivers/usb/core/quirks.c:307 [usbcore]usb_detect_interface_quirks =_ "USB interface quirks for this device: %x\012"
    drivers/usb/core/quirks.c:286 [usbcore]usb_detect_quirks =_ "USB quirks for this device: %x\012"
    drivers/usb/core/port.c:266 [usbcore]link_peers_report =_ "peered to %s\012"
    drivers/usb/core/port.c:115 [usbcore]usb_port_runtime_resume =_ "reconnect timeout\012"
    drivers/usb/core/hcd-pci.c:567 [usbcore]hcd_pci_suspend_noirq =_ "--> PCI %s\012"
    drivers/usb/core/hcd-pci.c:563 [usbcore]hcd_pci_suspend_noirq =_ "--> PCI D0 legacy\012"
    drivers/usb/core/hcd-pci.c:556 [usbcore]hcd_pci_suspend_noirq =_ "wakeup: %d\012"
    drivers/usb/core/hcd-pci.c:615 [usbcore]hcd_pci_runtime_suspend =_ "hcd_pci_runtime_suspend: %d\012"
    drivers/usb/core/hcd-pci.c:496 [usbcore]resume_common =_ "can't resume, not suspended!\012"
    drivers/usb/core/hcd-pci.c:625 [usbcore]hcd_pci_runtime_resume =_ "hcd_pci_runtime_resume: %d\012"
    drivers/usb/core/hcd-pci.c:115 [usbcore]ehci_post_add =_ "HS companion for %s\012"
    drivers/usb/core/hcd-pci.c:133 [usbcore]non_ehci_add =_ "FS/LS companion for %s\012"
    drivers/usb/core/hcd-pci.c:253 [usbcore]usb_hcd_pci_probe =_ "no i/o regions available\012"
    drivers/usb/core/hcd-pci.c:232 [usbcore]usb_hcd_pci_probe =_ "error mapping memory\012"
    drivers/usb/core/hcd-pci.c:226 [usbcore]usb_hcd_pci_probe =_ "controller already in use\012"
    drivers/usb/core/usb-acpi.c:82 [usbcore]usb_acpi_set_power_state =_ "acpi: power failed to be set\012"
    drivers/usb/core/usb-acpi.c:80 [usbcore]usb_acpi_set_power_state =_ "acpi: power was set to %d\012"
    drivers/usb/dwc2/core.c:2812 [dwc2]dwc2_get_hwparams =_ "\012"
    drivers/usb/dwc2/core.c:2811 [dwc2]dwc2_get_hwparams =_ "  host_perio_tx_fifo_size=%d\012"
    drivers/usb/dwc2/core.c:2809 [dwc2]dwc2_get_hwparams =_ "  host_nperio_tx_fifo_size=%d\012"
    drivers/usb/dwc2/core.c:2807 [dwc2]dwc2_get_hwparams =_ "  host_rx_fifo_size=%d\012"
    drivers/usb/dwc2/core.c:2805 [dwc2]dwc2_get_hwparams =_ "  total_fifo_size=%d\012"
    drivers/usb/dwc2/core.c:2803 [dwc2]dwc2_get_hwparams =_ "  en_multiple_tx_fifo=%d\012"
    drivers/usb/dwc2/core.c:2801 [dwc2]dwc2_get_hwparams =_ "  enable_dynamic_fifo=%d\012"
    drivers/usb/dwc2/core.c:2799 [dwc2]dwc2_get_hwparams =_ "  dev_token_q_depth=0x%0x\012"
    drivers/usb/dwc2/core.c:2797 [dwc2]dwc2_get_hwparams =_ "  host_perio_tx_q_depth=0x%0x\012"
    drivers/usb/dwc2/core.c:2795 [dwc2]dwc2_get_hwparams =_ "  nperio_tx_q_depth=0x%0x\012"
    drivers/usb/dwc2/core.c:2793 [dwc2]dwc2_get_hwparams =_ "  max_packet_count=%d\012"
    drivers/usb/dwc2/core.c:2791 [dwc2]dwc2_get_hwparams =_ "  max_transfer_size=%d\012"
    drivers/usb/dwc2/core.c:2789 [dwc2]dwc2_get_hwparams =_ "  host_channels=%d\012"
    drivers/usb/dwc2/core.c:2787 [dwc2]dwc2_get_hwparams =_ "  num_dev_perio_in_ep=%d\012"
    drivers/usb/dwc2/core.c:2785 [dwc2]dwc2_get_hwparams =_ "  num_dev_ep=%d\012"
    drivers/usb/dwc2/core.c:2783 [dwc2]dwc2_get_hwparams =_ "  utmi_phy_data_wdith=%d\012"
    drivers/usb/dwc2/core.c:2781 [dwc2]dwc2_get_hwparams =_ "  fs_phy_type=%d\012"
    drivers/usb/dwc2/core.c:2779 [dwc2]dwc2_get_hwparams =_ "  hs_phy_type=%d\012"
    drivers/usb/dwc2/core.c:2777 [dwc2]dwc2_get_hwparams =_ "  i2c_enable=%d\012"
    drivers/usb/dwc2/core.c:2775 [dwc2]dwc2_get_hwparams =_ "  power_optimized=%d\012"
    drivers/usb/dwc2/core.c:2773 [dwc2]dwc2_get_hwparams =_ "  dma_desc_enable=%d\012"
    drivers/usb/dwc2/core.c:2771 [dwc2]dwc2_get_hwparams =_ "  arch=%d\012"
    drivers/usb/dwc2/core.c:2769 [dwc2]dwc2_get_hwparams =_ "  op_mode=%d\012"
    drivers/usb/dwc2/core.c:2767 [dwc2]dwc2_get_hwparams =_ "Detected values from hardware:\012"
    drivers/usb/dwc2/core.c:2702 [dwc2]dwc2_get_hwparams =_ "hptxfsiz=%08x\012"
    drivers/usb/dwc2/core.c:2701 [dwc2]dwc2_get_hwparams =_ "gnptxfsiz=%08x\012"
    drivers/usb/dwc2/core.c:2691 [dwc2]dwc2_get_hwparams =_ "grxfsiz=%08x\012"
    drivers/usb/dwc2/core.c:2690 [dwc2]dwc2_get_hwparams =_ "hwcfg4=%08x\012"
    drivers/usb/dwc2/core.c:2689 [dwc2]dwc2_get_hwparams =_ "hwcfg3=%08x\012"
    drivers/usb/dwc2/core.c:2688 [dwc2]dwc2_get_hwparams =_ "hwcfg2=%08x\012"
    drivers/usb/dwc2/core.c:2687 [dwc2]dwc2_get_hwparams =_ "hwcfg1=%08x\012"
    drivers/usb/dwc2/core.c:2679 [dwc2]dwc2_get_hwparams =_ "Core Release: %1x.%1x%1x%1x (snpsid=%x)\012"
    drivers/usb/dwc2/core.c:2599 [dwc2]dwc2_set_param_uframe_sched =_ "Setting uframe_sched to %d\012"
    drivers/usb/dwc2/core.c:2612 [dwc2]dwc2_set_parameters =_ "%s()\012"
    drivers/usb/dwc2/core.c:2583 [dwc2]dwc2_set_param_otg_ver =_ "Setting otg_ver to %d\012"
    drivers/usb/dwc2/core.c:2558 [dwc2]dwc2_set_param_reload_ctl =_ "Setting reload_ctl to %d\012"
    drivers/usb/dwc2/core.c:2530 [dwc2]dwc2_set_param_en_multiple_tx_fifo =_ "Setting en_multiple_tx_fifo to %d\012"
    drivers/usb/dwc2/core.c:2501 [dwc2]dwc2_set_param_i2c_enable =_ "Setting i2c_enable to %d\012"
    drivers/usb/dwc2/core.c:2473 [dwc2]dwc2_set_param_ts_dline =_ "Setting ts_dline to %d\012"
    drivers/usb/dwc2/core.c:2459 [dwc2]dwc2_set_param_ulpi_fs_ls =_ "Setting ulpi_fs_ls to %d\012"
    drivers/usb/dwc2/core.c:2445 [dwc2]dwc2_set_param_phy_utmi_width =_ "Setting phy_utmi_width to %d\012"
    drivers/usb/dwc2/core.c:2415 [dwc2]dwc2_set_param_phy_ulpi_ext_vbus =_ "Setting phy_ulpi_ext_vbus to %d\012"
    drivers/usb/dwc2/core.c:2399 [dwc2]dwc2_set_param_phy_ulpi_ddr =_ "Setting phy_upli_ddr to %d\012"
    drivers/usb/dwc2/core.c:2385 [dwc2]dwc2_set_param_host_ls_low_power_phy_clk =_ "Setting host_ls_low_power_phy_clk to %d\012"
    drivers/usb/dwc2/core.c:2351 [dwc2]dwc2_set_param_speed =_ "Setting speed to %d\012"
    drivers/usb/dwc2/core.c:2317 [dwc2]dwc2_set_param_phy_type =_ "Setting phy_type to %d\012"
    drivers/usb/dwc2/core.c:2269 [dwc2]dwc2_set_param_host_channels =_ "Setting host_channels to %d\012"
    drivers/usb/dwc2/core.c:2250 [dwc2]dwc2_set_param_max_packet_count =_ "Setting max_packet_count to %d\012"
    drivers/usb/dwc2/core.c:2231 [dwc2]dwc2_set_param_max_transfer_size =_ "Setting max_transfer_size to %d\012"
    drivers/usb/dwc2/core.c:2212 [dwc2]dwc2_set_param_host_perio_tx_fifo_size =_ "Setting host_perio_tx_fifo_size to %d\012"
    drivers/usb/dwc2/core.c:2192 [dwc2]dwc2_set_param_host_nperio_tx_fifo_size =_ "Setting host_nperio_tx_fifo_size to %d\012"
    drivers/usb/dwc2/core.c:2172 [dwc2]dwc2_set_param_host_rx_fifo_size =_ "Setting host_rx_fifo_size to %d\012"
    drivers/usb/dwc2/core.c:2153 [dwc2]dwc2_set_param_enable_dynamic_fifo =_ "Setting enable_dynamic_fifo to %d\012"
    drivers/usb/dwc2/core.c:2132 [dwc2]dwc2_set_param_host_support_fs_ls_low_power =_ "Setting host_support_fs_low_power to %d\012"
    drivers/usb/dwc2/core.c:2114 [dwc2]dwc2_set_param_dma_desc_enable =_ "Setting dma_desc_enable to %d\012"
    drivers/usb/dwc2/core.c:2091 [dwc2]dwc2_set_param_dma_enable =_ "Setting dma_enable to %d\012"
    drivers/usb/dwc2/core.c:2070 [dwc2]dwc2_set_param_otg_cap =_ "Setting otg_cap to %d\012"
    drivers/usb/dwc2/core.c:1117 [dwc2]dwc2_hc_halt =_ "desc DMA enabled\012"
    drivers/usb/dwc2/core.c:624 [dwc2]dwc2_config_fifos =_ "new hptxfsiz=%08x\012"
    drivers/usb/dwc2/core.c:616 [dwc2]dwc2_config_fifos =_ "initial hptxfsiz=%08x\012"
    drivers/usb/dwc2/core.c:612 [dwc2]dwc2_config_fifos =_ "new gnptxfsiz=%08x\012"
    drivers/usb/dwc2/core.c:605 [dwc2]dwc2_config_fifos =_ "initial gnptxfsiz=%08x\012"
    drivers/usb/dwc2/core.c:601 [dwc2]dwc2_config_fifos =_ "new grxfsiz=%08x\012"
    drivers/usb/dwc2/core.c:596 [dwc2]dwc2_config_fifos =_ "initial grxfsiz=%08x\012"
    drivers/usb/dwc2/core.c:761 [dwc2]dwc2_core_host_init =_ "Init: Power Port (%d)\012"
    drivers/usb/dwc2/core.c:756 [dwc2]dwc2_core_host_init =_ "Init: Port Power? op_state=%d\012"
    drivers/usb/dwc2/core.c:741 [dwc2]dwc2_core_host_init =_ "%s: Halt channel %d\012"
    drivers/usb/dwc2/core.c:657 [dwc2]dwc2_core_host_init =_ "%s(%p)\012"
    drivers/usb/dwc2/core.c:488 [dwc2]dwc2_enable_host_interrupts =_ "%s()\012"
    drivers/usb/dwc2/core.c:350 [dwc2]dwc2_gahbcfg_init =_ "Using Slave mode\012"
    drivers/usb/dwc2/core.c:348 [dwc2]dwc2_gahbcfg_init =_ "Using Buffer DMA mode\012"
    drivers/usb/dwc2/core.c:346 [dwc2]dwc2_gahbcfg_init =_ "Using Descriptor DMA mode\012"
    drivers/usb/dwc2/core.c:342 [dwc2]dwc2_gahbcfg_init =_ "dma_enable:%d dma_desc_enable:%d\012"
    drivers/usb/dwc2/core.c:336 [dwc2]dwc2_gahbcfg_init =_ "Slave Only Mode\012"
    drivers/usb/dwc2/core.c:326 [dwc2]dwc2_gahbcfg_init =_ "Internal DMA Mode\012"
    drivers/usb/dwc2/core.c:257 [dwc2]dwc2_hs_phy_init =_ "HS UTMI+ PHY selected\012"
    drivers/usb/dwc2/core.c:249 [dwc2]dwc2_hs_phy_init =_ "HS ULPI PHY selected\012"
    drivers/usb/dwc2/core.c:106 [dwc2]dwc2_init_fs_ls_pclk_sel =_ "Initializing HCFG.FSLSPClkSel to %08x\012"
    drivers/usb/dwc2/core.c:211 [dwc2]dwc2_fs_phy_init =_ "FS PHY enabling I2C\012"
    drivers/usb/dwc2/core.c:188 [dwc2]dwc2_fs_phy_init =_ "FS PHY selected\012"
    drivers/usb/dwc2/core.c:301 [dwc2]dwc2_phy_init =_ "Setting ULPI FSLS\012"
    drivers/usb/dwc2/core.c:472 [dwc2]dwc2_core_init =_ "Device Mode\012"
    drivers/usb/dwc2/core.c:469 [dwc2]dwc2_core_init =_ "Host Mode\012"
    drivers/usb/dwc2/core.c:456 [dwc2]dwc2_core_init =_ "OTG VER PARAM: %d\012"
    drivers/usb/dwc2/core.c:410 [dwc2]dwc2_core_init =_ "%s(%p)\012"
    drivers/usb/dwc2/core_intr.c:413 [dwc2]dwc2_handle_usb_suspend_intr =_ "a_peripheral->a_host\012"
    drivers/usb/dwc2/core_intr.c:410 [dwc2]dwc2_handle_usb_suspend_intr =_ "DSTS.Suspend Status=%d HWCFG4.Power Optimize=%d\012"
    drivers/usb/dwc2/core_intr.c:406 [dwc2]dwc2_handle_usb_suspend_intr =_ "DSTS=0x%0x\012"
    drivers/usb/dwc2/core_intr.c:398 [dwc2]dwc2_handle_usb_suspend_intr =_ "USB SUSPEND\012"
    drivers/usb/dwc2/core_intr.c:341 [dwc2]dwc2_handle_wakeup_detected_intr =_ "DSTS=0x%0x\012"
    drivers/usb/dwc2/core_intr.c:338 [dwc2]dwc2_handle_wakeup_detected_intr =_ "%s lxstate = %d\012"
    drivers/usb/dwc2/core_intr.c:337 [dwc2]dwc2_handle_wakeup_detected_intr =_ "++Resume or Remote Wakeup Detected Interrupt++\012"
    drivers/usb/dwc2/core_intr.c:316 [dwc2]dwc2_handle_session_req_intr =_ "++Session Request Interrupt++\012"
    drivers/usb/dwc2/core_intr.c:378 [dwc2]dwc2_handle_disconnect_intr =_ "++Disconnect Detected Interrupt++ (%s) %s\012"
    drivers/usb/dwc2/core_intr.c:286 [dwc2]dwc2_handle_conn_id_status_change_intr =_ " ++Connector ID Status Change Interrupt++  (%s)\012"
    drivers/usb/dwc2/core_intr.c:261 [dwc2]dwc2_handle_otg_intr =_ " ++OTG Interrupt: Debounce Done++\012"
    drivers/usb/dwc2/core_intr.c:259 [dwc2]dwc2_handle_otg_intr =_ " ++OTG Interrupt: A-Device Timeout Change++\012"
    drivers/usb/dwc2/core_intr.c:240 [dwc2]dwc2_handle_otg_intr =_ "a_suspend->a_peripheral (%d)\012"
    drivers/usb/dwc2/core_intr.c:237 [dwc2]dwc2_handle_otg_intr =_ " ++OTG Interrupt: Host Negotiation Detected++ (%s)\012"
    drivers/usb/dwc2/core_intr.c:222 [dwc2]dwc2_handle_otg_intr =_ "HNP Failed\012"
    drivers/usb/dwc2/core_intr.c:162 [dwc2]dwc2_handle_otg_intr =_ " ++OTG Interrupt: Session Request Success Status Change++\012"
    drivers/usb/dwc2/core_intr.c:142 [dwc2]dwc2_handle_otg_intr =_ "Session End Detected\012"
    drivers/usb/dwc2/core_intr.c:128 [dwc2]dwc2_handle_otg_intr =_ " ++OTG Interrupt: Session End Detected++ (%s)\012"
    drivers/usb/dwc2/core_intr.c:123 [dwc2]dwc2_handle_otg_intr =_ "++OTG Interrupt gotgint=%0x [%s]\012"
    drivers/usb/dwc2/core_intr.c:452 [dwc2]dwc2_read_common_intr =_ "gintsts=%08x  gintmsk=%08x\012"
    drivers/usb/dwc2/core_intr.c:512 [dwc2]dwc2_handle_common_intr =_ " --Port interrupt received in Device mode--\012"
    drivers/usb/dwc2/hcd.c:2987 [dwc2]dwc2_hcd_remove =_ "%s: dwc2_hsotg_to_hcd(hsotg) NULL!\012"
    drivers/usb/dwc2/hcd.c:2983 [dwc2]dwc2_hcd_remove =_ "hsotg->hcd = %p\012"
    drivers/usb/dwc2/hcd.c:2980 [dwc2]dwc2_hcd_remove =_ "DWC OTG HCD REMOVE\012"
    drivers/usb/dwc2/hcd.c:2702 [dwc2]dwc2_hcd_free =_ "HCD Free channel #%i, chan=%p\012"
    drivers/usb/dwc2/hcd.c:2686 [dwc2]dwc2_hcd_free =_ "DWC OTG HCD FREE\012"
    drivers/usb/dwc2/hcd.c:431 [dwc2]dwc2_hcd_urb_dequeue =_ "## Urb QTD QH is NULL ##\012"
    drivers/usb/dwc2/hcd.c:425 [dwc2]dwc2_hcd_urb_dequeue =_ "## Urb QTD is NULL ##\012"
    drivers/usb/dwc2/hcd.c:2554 [dwc2]_dwc2_hcd_urb_dequeue =_ "  urb->status = %d\012"
    drivers/usb/dwc2/hcd.c:2553 [dwc2]_dwc2_hcd_urb_dequeue =_ "Called usb_hcd_giveback_urb()\012"
    drivers/usb/dwc2/hcd.c:2537 [dwc2]_dwc2_hcd_urb_dequeue =_ "## urb->hcpriv is NULL ##\012"
    drivers/usb/dwc2/hcd.c:2527 [dwc2]_dwc2_hcd_urb_dequeue =_ "DWC OTG HCD URB Dequeue\012"
    drivers/usb/dwc2/hcd.c:2573 [dwc2]_dwc2_hcd_endpoint_disable =_ "DWC OTG HCD EP DISABLE: bEndpointAddress=0x%02x, ep->hcpriv=%p\012"
    drivers/usb/dwc2/hcd.c:2590 [dwc2]_dwc2_hcd_endpoint_reset =_ "DWC OTG HCD EP RESET: bEndpointAddress=0x%02x\012"
    drivers/usb/dwc2/hcd.c:1811 [dwc2]dwc2_hcd_is_status_changed =_ "  port_over_current_change: %d\012"
    drivers/usb/dwc2/hcd.c:1809 [dwc2]dwc2_hcd_is_status_changed =_ "  port_suspend_change: %d\012"
    drivers/usb/dwc2/hcd.c:1807 [dwc2]dwc2_hcd_is_status_changed =_ "  port_enable_change: %d\012"
    drivers/usb/dwc2/hcd.c:1805 [dwc2]dwc2_hcd_is_status_changed =_ "  port_reset_change: %d\012"
    drivers/usb/dwc2/hcd.c:1803 [dwc2]dwc2_hcd_is_status_changed =_ "  port_connect_status_change: %d\012"
    drivers/usb/dwc2/hcd.c:1801 [dwc2]dwc2_hcd_is_status_changed =_ "DWC OTG HCD HUB STATUS DATA: Root port status changed\012"
    drivers/usb/dwc2/hcd.c:1438 [dwc2]dwc2_port_suspend =_ "%s()\012"
    drivers/usb/dwc2/hcd.c:1779 [dwc2]dwc2_hcd_hub_control =_ "Unknown hub control request: %1xh wIndex: %1xh wValue: %1xh\012"
    drivers/usb/dwc2/hcd.c:1761 [dwc2]dwc2_hcd_hub_control =_ "SetPortFeature - USB_PORT_FEAT_INDICATOR\012"
    drivers/usb/dwc2/hcd.c:1748 [dwc2]dwc2_hcd_hub_control =_ "In host mode, hprt0=%08x\012"
    drivers/usb/dwc2/hcd.c:1729 [dwc2]dwc2_hcd_hub_control =_ "SetPortFeature - USB_PORT_FEAT_RESET\012"
    drivers/usb/dwc2/hcd.c:1720 [dwc2]dwc2_hcd_hub_control =_ "SetPortFeature - USB_PORT_FEAT_POWER\012"
    drivers/usb/dwc2/hcd.c:1712 [dwc2]dwc2_hcd_hub_control =_ "SetPortFeature - USB_PORT_FEAT_SUSPEND\012"
    drivers/usb/dwc2/hcd.c:1694 [dwc2]dwc2_hcd_hub_control =_ "SetPortFeature\012"
    drivers/usb/dwc2/hcd.c:1689 [dwc2]dwc2_hcd_hub_control =_ "SetHubFeature\012"
    drivers/usb/dwc2/hcd.c:1619 [dwc2]dwc2_hcd_hub_control =_ "GetHubStatus\012"
    drivers/usb/dwc2/hcd.c:1606 [dwc2]dwc2_hcd_hub_control =_ "GetHubDescriptor\012"
    drivers/usb/dwc2/hcd.c:1593 [dwc2]dwc2_hcd_hub_control =_ "ClearPortFeature USB_PORT_FEAT_C_OVER_CURRENT\012"
    drivers/usb/dwc2/hcd.c:1587 [dwc2]dwc2_hcd_hub_control =_ "ClearPortFeature USB_PORT_FEAT_C_PORT_L1\012"
    drivers/usb/dwc2/hcd.c:1581 [dwc2]dwc2_hcd_hub_control =_ "ClearPortFeature USB_PORT_FEAT_C_SUSPEND\012"
    drivers/usb/dwc2/hcd.c:1570 [dwc2]dwc2_hcd_hub_control =_ "ClearPortFeature USB_PORT_FEAT_C_ENABLE\012"
    drivers/usb/dwc2/hcd.c:1560 [dwc2]dwc2_hcd_hub_control =_ "ClearPortFeature USB_PORT_FEAT_C_RESET\012"
    drivers/usb/dwc2/hcd.c:1553 [dwc2]dwc2_hcd_hub_control =_ "ClearPortFeature USB_PORT_FEAT_C_CONNECTION\012"
    drivers/usb/dwc2/hcd.c:1544 [dwc2]dwc2_hcd_hub_control =_ "ClearPortFeature USB_PORT_FEAT_INDICATOR\012"
    drivers/usb/dwc2/hcd.c:1536 [dwc2]dwc2_hcd_hub_control =_ "ClearPortFeature USB_PORT_FEAT_POWER\012"
    drivers/usb/dwc2/hcd.c:1520 [dwc2]dwc2_hcd_hub_control =_ "ClearPortFeature USB_PORT_FEAT_SUSPEND\012"
    drivers/usb/dwc2/hcd.c:1512 [dwc2]dwc2_hcd_hub_control =_ "ClearPortFeature USB_PORT_FEAT_ENABLE\012"
    drivers/usb/dwc2/hcd.c:1489 [dwc2]dwc2_hcd_hub_control =_ "ClearHubFeature %1xh\012"
    drivers/usb/dwc2/hcd.c:1378 [dwc2]dwc2_conn_id_status_change =_ "connId A\012"
    drivers/usb/dwc2/hcd.c:1358 [dwc2]dwc2_conn_id_status_change =_ "connId B\012"
    drivers/usb/dwc2/hcd.c:1353 [dwc2]dwc2_conn_id_status_change =_ "gotgctl.b.conidsts=%d\012"
    drivers/usb/dwc2/hcd.c:1351 [dwc2]dwc2_conn_id_status_change =_ "gotgctl=%0x\012"
    drivers/usb/dwc2/hcd.c:1348 [dwc2]dwc2_conn_id_status_change =_ "%s()\012"
    drivers/usb/dwc2/hcd.c:1415 [dwc2]dwc2_wakeup_detected =_ "Clear Resume: HPRT0=%0x\012"
    drivers/usb/dwc2/hcd.c:1411 [dwc2]dwc2_wakeup_detected =_ "Resume: HPRT0=%0x\012"
    drivers/usb/dwc2/hcd.c:1404 [dwc2]dwc2_wakeup_detected =_ "%s()\012"
    drivers/usb/dwc2/hcd.c:2227 [dwc2]dwc2_hcd_start_func =_ "%s() %p\012"
    drivers/usb/dwc2/hcd.c:2240 [dwc2]dwc2_hcd_reset_func =_ "USB RESET function called\012"
    drivers/usb/dwc2/hcd.c:2797 [dwc2]dwc2_hcd_init =_ "hcfg=%08x\012"
    drivers/usb/dwc2/hcd.c:2786 [dwc2]dwc2_hcd_init =_ "DWC OTG HCD INIT\012"
    drivers/usb/dwc2/hcd.c:2161 [dwc2]dwc2_host_complete =_ "## %s: urb->priv is NULL ##\012"
    drivers/usb/dwc2/hcd.c:2155 [dwc2]dwc2_host_complete =_ "## %s: qtd->urb is NULL ##\012"
    drivers/usb/dwc2/hcd.c:2150 [dwc2]dwc2_host_complete =_ "## %s: qtd is NULL ##\012"
    drivers/usb/dwc2/hcd.c:2279 [dwc2]_dwc2_hcd_start =_ "DWC OTG HCD Has Root Hub\012"
    drivers/usb/dwc2/hcd.c:2264 [dwc2]_dwc2_hcd_start =_ "DWC OTG HCD START\012"
    drivers/usb/dwc2/hcd.c:770 [dwc2]dwc2_assign_and_init_hc =_ "No free channel to assign\012"
    drivers/usb/dwc2/hcd.c:765 [dwc2]dwc2_assign_and_init_hc =_ "No QTDs in QH list\012"
    drivers/usb/dwc2/hcd.c:346 [dwc2]dwc2_hcd_stop =_ "PortPower off\012"
    drivers/usb/dwc2/hcd.c:334 [dwc2]dwc2_hcd_stop =_ "DWC OTG HCD STOP\012"
    drivers/usb/dwc2/hcd.c:295 [dwc2]dwc2_hcd_disconnect =_ "Disconnect: PortPower off\012"
    drivers/usb/dwc2/hcd_intr.c:1653 [dwc2]dwc2_hc_datatglerr_intr =_ "--Host Channel %d Interrupt: Data Toggle Error--\012"
    drivers/usb/dwc2/hcd_intr.c:1623 [dwc2]dwc2_hc_frmovrun_intr =_ "--Host Channel %d Interrupt: Frame Overrun--\012"
    drivers/usb/dwc2/hcd_intr.c:1424 [dwc2]dwc2_hc_babble_intr =_ "--Host Channel %d Interrupt: Babble Error--\012"
    drivers/usb/dwc2/hcd_intr.c:1561 [dwc2]dwc2_hc_xacterr_intr =_ "--Host Channel %d Interrupt: Transaction Error--\012"
    drivers/usb/dwc2/hcd_intr.c:1095 [dwc2]dwc2_hc_stall_intr =_ "--Host Channel %d Interrupt: STALL Received--\012"
    drivers/usb/dwc2/hcd_intr.c:1465 [dwc2]dwc2_hc_ahberr_intr =_ "--Host Channel %d Interrupt: AHB Error--\012"
    drivers/usb/dwc2/hcd_intr.c:1860 [dwc2]dwc2_hc_chhltd_intr_dma =_ "%s: Halt channel %d (assume incomplete periodic transfer)\012"
    drivers/usb/dwc2/hcd_intr.c:640 [dwc2]dwc2_deactivate_qh =_ "## QTD list empty ##\012"
    drivers/usb/dwc2/hcd_intr.c:1974 [dwc2]dwc2_hc_n_intr =_ "  hcint 0x%08x, hcintmsk 0x%08x, hcint&hcintmsk 0x%08x\012"
    drivers/usb/dwc2/hcd_intr.c:1971 [dwc2]dwc2_hc_n_intr =_ "## no QTD queued for channel %d ##\012"
    drivers/usb/dwc2/hcd_queue.c:127 [dwc2]dwc2_qh_init =_ "interval=%d\012"
    drivers/usb/dwc2/hcd_queue.c:267 [dwc2]dwc2_periodic_channel_available =_ "%s: Total channels: %d, Periodic: %d, Non-periodic: %d\012"
    drivers/usb/dwc2/hcd_queue.c:512 [dwc2]dwc2_schedule_periodic =_ "%s: Channel max transfer size too small for periodic transfer\012"
    drivers/usb/dwc2/hcd_queue.c:504 [dwc2]dwc2_schedule_periodic =_ "%s: Insufficient periodic bandwidth for periodic transfer\012"
    drivers/usb/dwc2/pci.c:137 [dwc2_pci]dwc2_driver_probe =_ "mapped PA %08lx to VA %p\012"
    drivers/usb/dwc2/platform.c:211 [dwc2_platform]dwc2_driver_probe =_ "mapped PA %08lx to VA %p\012"
    drivers/usb/dwc2/platform.c:198 [dwc2_platform]dwc2_driver_probe =_ "registering common handler for irq%d\012"
    drivers/usb/host/pci-quirks.c:697 [pci_quirks]ehci_bios_handoff =_ "EHCI: BIOS handoff\012"
    drivers/usb/host/pci-quirks.c:945 [pci_quirks]usb_enable_intel_xhci_ports =_ "USB 2.0 ports that are now switched over to xHCI: 0x%x\012"
    drivers/usb/host/pci-quirks.c:933 [pci_quirks]usb_enable_intel_xhci_ports =_ "Configurable USB 2.0 ports to hand over to xCHI: 0x%x\012"
    drivers/usb/host/pci-quirks.c:923 [pci_quirks]usb_enable_intel_xhci_ports =_ "USB 3.0 ports that are now enabled under xHCI: 0x%x\012"
    drivers/usb/host/pci-quirks.c:911 [pci_quirks]usb_enable_intel_xhci_ports =_ "Configurable ports to enable SuperSpeed: 0x%x\012"
    drivers/usb/host/pci-quirks.c:528 [pci_quirks]uhci_check_and_reset_hc =_ "Performing full reset\012"
    drivers/usb/host/pci-quirks.c:522 [pci_quirks]uhci_check_and_reset_hc =_ "%s: intr = 0x%04x\012"
    drivers/usb/host/pci-quirks.c:515 [pci_quirks]uhci_check_and_reset_hc =_ "%s: cmd = 0x%04x\012"
    drivers/usb/host/pci-quirks.c:507 [pci_quirks]uhci_check_and_reset_hc =_ "%s: legsup = 0x%04x\012"
    drivers/usb/host/pci-quirks.c:257 [pci_quirks]usb_hcd_amd_remote_wakeup_quirk =_ "QUIRK: Enable AMD remote wakeup fix\012"
    drivers/usb/host/xhci-pci.c:61 [xhci_pci]xhci_pci_reinit =_ "Finished xhci_pci_reinit\012"
    drivers/usb/host/xhci-pci.c:59 [xhci_pci]xhci_pci_reinit =_ "MWI active\012"
    drivers/usb/host/xhci-pci.c:202 [xhci_pci]xhci_pci_setup =_ "Got SBRN %u\012"
    drivers/usb/host/ehci-hcd.c:1320 [ehci_hcd]ehci_hcd_init =_ "%s: block sizes: qh %Zd qtd %Zd itd %Zd sitd %Zd\012"
    drivers/usb/host/ehci-hcd.c:812 [ehci_hcd]ehci_irq =_ "%s\012"
    drivers/usb/host/ehci-hcd.c:811 [ehci_hcd]ehci_irq =_ "%s\012"
    drivers/usb/host/ehci-hcd.c:802 [ehci_hcd]ehci_irq =_ "port %d remote wakeup\012"
    drivers/usb/host/ehci-hcd.c:755 [ehci_hcd]ehci_irq =_ "IAA with IAAD still set?\012"
    drivers/usb/host/ehci-hcd.c:707 [ehci_hcd]ehci_irq =_ "device removed\012"
    drivers/usb/host/ehci-hcd.c:612 [ehci_hcd]ehci_run =_ "%s\012"
    drivers/usb/host/ehci-hcd.c:451 [ehci_hcd]ehci_stop =_ "%s\012"
    drivers/usb/host/ehci-hcd.c:425 [ehci_hcd]ehci_stop =_ "stop\012"
    drivers/usb/host/ehci-sched.c:2350 [ehci_hcd]sitd_submit =_ "can't init sitds\012"
    drivers/usb/host/ehci-sched.c:2334 [ehci_hcd]sitd_submit =_ "can't change iso interval %d --> %d\012"
    drivers/usb/host/ehci-sched.c:2329 [ehci_hcd]sitd_submit =_ "can't get iso stream\012"
    drivers/usb/host/ehci-sched.c:1666 [ehci_hcd]iso_stream_schedule =_ "request %p would overflow (%u+%u >= %u)\012"
    drivers/usb/host/ehci-sched.c:1640 [ehci_hcd]iso_stream_schedule =_ "iso underrun %p (%u+%u < %u) [%u]\012"
    drivers/usb/host/ehci-sched.c:1610 [ehci_hcd]iso_stream_schedule =_ "request %p would overflow (%u-%u < %u mod %u)\012"
    drivers/usb/host/ehci-sched.c:1555 [ehci_hcd]iso_stream_schedule =_ "iso sched full %p"
    drivers/usb/host/ehci-sched.c:1181 [ehci_hcd]iso_stream_find =_ "dev %s ep%d%s, not iso??\012"
    drivers/usb/host/ehci-sched.c:1972 [ehci_hcd]itd_submit =_ "can't init itds\012"
    drivers/usb/host/ehci-sched.c:1954 [ehci_hcd]itd_submit =_ "can't change iso interval %d --> %d\012"
    drivers/usb/host/ehci-sched.c:1949 [ehci_hcd]itd_submit =_ "can't get iso stream\012"
    drivers/usb/host/ehci-q.c:928 [ehci_hcd]qh_make =_ "bogus dev %p speed %d\012"
    drivers/usb/host/ehci-q.c:787 [ehci_hcd]qh_make =_ "bogus qh maxpacket %d\012"
    drivers/usb/host/ehci-hub.c:330 [ehci_hcd]ehci_bus_suspend =_ "Port %d phy low-power mode %s\012"
    drivers/usb/host/ehci-hub.c:252 [ehci_hcd]ehci_bus_suspend =_ "suspend failed because a port is resuming\012"
    drivers/usb/host/ehci-hub.c:232 [ehci_hcd]ehci_bus_suspend =_ "suspend root hub\012"
    drivers/usb/host/ehci-hub.c:127 [ehci_hcd]ehci_handover_companion_ports =_ "failed handover port %d: %x\012"
    drivers/usb/host/ehci-hub.c:430 [ehci_hcd]ehci_bus_resume =_ "Port status(0x%x) is wrong\012"
    drivers/usb/host/ehci-hub.c:403 [ehci_hcd]ehci_bus_resume =_ "resume root hub%s\012"
    drivers/usb/host/ehci-hcd.c:253 [ehci_hcd]ehci_reset =_ "%s\012"
    drivers/usb/host/ehci-mem.c:71 [ehci_hcd]qh_destroy =_ "unused qh not empty!\012"
    drivers/usb/host/ehci-mem.c:101 [ehci_hcd]ehci_qh_alloc =_ "no dummy td\012"
    drivers/usb/host/ehci-mem.c:243 [ehci_hcd]ehci_mem_init =_ "couldn't init memory\012"
    drivers/usb/host/ehci-timer.c:123 [ehci_hcd]ehci_poll_ASS =_ "Waited too long for the async schedule status (%x/%x), giving up\012"
    drivers/usb/host/ehci-timer.c:169 [ehci_hcd]ehci_poll_PSS =_ "Waited too long for the periodic schedule status (%x/%x), giving up\012"
    drivers/usb/host/ehci-sched.c:554 [ehci_hcd]qh_link_periodic =_ "link qh%d-%04x/%p start %d [%d/%d us]\012"
    drivers/usb/host/ehci-sched.c:215 [ehci_hcd]bandwidth_dbg =_ "ep %02x: %s %s @ %u+%u (%u.%u+%u) [%u/%u us] mask %04x\012"
    drivers/usb/host/ehci-sched.c:872 [ehci_hcd]qh_schedule =_ "reused qh %p schedule\012"
    drivers/usb/host/ehci-timer.c:362 [ehci_hcd]ehci_iaa_watchdog =_ "IAA watchdog: status %x cmd %x\012"
    drivers/usb/host/ehci-sched.c:2494 [ehci_hcd]scan_isoc =_ "corrupt type %d frame %d shadow %p\012"
    drivers/usb/host/ehci-sched.c:647 [ehci_hcd]qh_unlink_periodic =_ "unlink qh%d-%04x/%p start %d [%d/%d us]\012"
    drivers/usb/host/ehci-q.c:176 [ehci_hcd]ehci_clear_tt_buffer =_ "clear tt buffer port %d, a%d ep%d t%08x\012"
    drivers/usb/host/ehci-q.c:238 [ehci_hcd]qtd_copy_status =_ "devpath %s ep%d%s 3strikes\012"
    drivers/usb/host/ehci-q.c:375 [ehci_hcd]qh_completions =_ "detected XactErr len %zu/%zu retry %d\012"
    drivers/usb/host/ehci-q.c:359 [ehci_hcd]qh_completions =_ "detected DataBufferErr for urb %p ep%d%s len %d, qtd %p [qh %p]\012"
    drivers/usb/host/ehci-hcd.c:555 [ehci_hcd]ehci_init =_ "park %d\012"
    drivers/usb/host/ehci-hcd.c:539 [ehci_hcd]ehci_init =_ "enable per-port change event\012"
    drivers/usb/host/ehci-dbg.c:95 [ehci_hcd]dbg_hcc_params =_ "%s hcc_params %04x thresh %d uframes %s%s%s%s%s%s%s\012"
    drivers/usb/host/ehci-dbg.c:81 [ehci_hcd]dbg_hcc_params =_ "%s hcc_params %04x caching frame %s%s%s\012"
    drivers/usb/host/ehci-dbg.c:56 [ehci_hcd]dbg_hcs_params =_ "%s portroute %s\012"
    drivers/usb/host/ehci-dbg.c:41 [ehci_hcd]dbg_hcs_params =_ "%s hcs_params 0x%x dbg=%d%s cc=%d pcc=%d%s%s ports=%d\012"
    drivers/usb/host/ehci-hub.c:593 [ehci_hcd]check_reset_complete =_ "port %d reset complete, port enabled\012"
    drivers/usb/host/ehci-hub.c:581 [ehci_hcd]check_reset_complete =_ "port %d full speed --> companion\012"
    drivers/usb/host/ehci-hub.c:576 [ehci_hcd]check_reset_complete =_ "Failed to enable port %d on root hub TT\012"
    drivers/usb/host/ehci-hub.c:1211 [ehci_hcd]ehci_hub_control =_ "port %d low speed --> companion\012"
    drivers/usb/host/ehci-hub.c:1188 [ehci_hcd]ehci_hub_control =_ "Port%d phy low pwr mode %s\012"
    drivers/usb/host/ehci-hub.c:1130 [ehci_hcd]ehci_hub_control =_ "%s\012"
    drivers/usb/host/ehci-hub.c:1086 [ehci_hcd]ehci_hub_control =_ "port %d --> companion\012"
    drivers/usb/host/ehci-pci.c:272 [ehci_pci]ehci_pci_setup =_ "bogus port configuration: cc=%d x pcc=%d < ports=%d\012"
    drivers/usb/host/ehci-pci.c:66 [ehci_pci]ehci_pci_reinit =_ "MWI active\012"
    drivers/usb/host/ohci-hcd.c:1266 [ohci_hcd]ohci_hcd_mod_init =_ "%s: block sizes: ed %Zd td %Zd\012"
    drivers/usb/host/ohci-hcd.c:925 [ohci_hcd]ohci_irq =_ "resume detect\012"
    drivers/usb/host/ohci-hcd.c:903 [ohci_hcd]ohci_irq =_ "rhsc\012"
    drivers/usb/host/ohci-hcd.c:869 [ohci_hcd]ohci_irq =_ "device removed!\012"
    drivers/usb/host/ohci-hcd.c:282 [ohci_hcd]ohci_urb_enqueue =_ "iso underrun %p (%u+%u < %u)\012"
    drivers/usb/host/ohci-hcd.c:1128 [ohci_hcd]ohci_resume =_ "powerup ports\012"
    drivers/usb/host/ohci-hcd.c:625 [ohci_hcd]ohci_run =_ "enabling initreset quirk\012"
    drivers/usb/host/ohci-hcd.c:539 [ohci_hcd]ohci_run =_ "fminterval delta %d\012"
    drivers/usb/host/ohci-hcd.c:1057 [ohci_hcd]ohci_restart =_ "restart complete\012"
    drivers/usb/host/ohci-hcd.c:1031 [ohci_hcd]ohci_restart =_ "bogus ed %p state %d\012"
    drivers/usb/host/ohci-hcd.c:1012 [ohci_hcd]ohci_restart =_ "abort schedule...\012"
    drivers/usb/host/ohci-dbg.c:785 [ohci_hcd]create_debug_files =_ "created debug files\012"
    drivers/usb/host/ohci-dbg.c:235 [ohci_hcd]ohci_dump_roothub =_ "roothub.portstatus [%d] 0x%08x%s%s%s%s%s%s%s%s%s%s%s%s\012"
    drivers/usb/host/ohci-dbg.c:230 [ohci_hcd]ohci_dump_roothub =_ "roothub.status %08x%s%s%s%s%s%s\012"
    drivers/usb/host/ohci-dbg.c:219 [ohci_hcd]ohci_dump_roothub =_ "roothub.b %08x PPCM=%04x DR=%04x\012"
    drivers/usb/host/ohci-dbg.c:212 [ohci_hcd]ohci_dump_roothub =_ "roothub.a %08x POTPGT=%d%s%s%s%s%s NDP=%d(%d)\012"
    drivers/usb/host/ohci-dbg.c:71 [ohci_hcd]maybe_print_eds =_ "%s %08x\012"
    drivers/usb/host/ohci-dbg.c:60 [ohci_hcd]ohci_dump_intr_mask =_ "%s 0x%08x%s%s%s%s%s%s%s%s%s\012"
    drivers/usb/host/ohci-dbg.c:135 [ohci_hcd]ohci_dump_status =_ "cmdstatus 0x%05x SOC=%d%s%s%s%s\012"
    drivers/usb/host/ohci-dbg.c:125 [ohci_hcd]ohci_dump_status =_ "control 0x%03x%s%s%s HCFS=%s%s%s%s%s CBSR=%d\012"
    drivers/usb/host/ohci-dbg.c:110 [ohci_hcd]ohci_dump_status =_ "OHCI %d.%d, %s legacy support registers, rh state %s\012"
    drivers/usb/host/ohci-dbg.c:247 [ohci_hcd]ohci_dump =_ "hcca frame #%04x\012"
    drivers/usb/host/ohci-dbg.c:241 [ohci_hcd]ohci_dump =_ "OHCI controller state\012"
    drivers/usb/host/ohci-hcd.c:769 [ohci_hcd]io_watchdog_func =_ "takeback pending TD for dev %d ep 0x%x\012"
    drivers/usb/host/ohci-hcd.c:464 [ohci_hcd]ohci_init =_ "USB HC TakeOver from BIOS/SMM\012"
    drivers/usb/host/ohci-hub.c:648 [ohci_hcd]root_port_reset =_ "port[%d] reset timeout, stat %08x\012"
    drivers/usb/host/ohci-hub.c:750 [ohci_hcd]ohci_hub_control =_ "%s roothub.portstatus [%d] = 0x%08x%s%s%s%s%s%s%s%s%s%s%s%s\012"
    drivers/usb/host/ohci-hub.c:288 [ohci_hcd]ohci_rh_resume =_ "restarting schedules ... %08x\012"
    drivers/usb/host/ohci-hub.c:191 [ohci_hcd]ohci_rh_resume =_ "lost power\012"
    drivers/usb/host/ohci-hub.c:187 [ohci_hcd]ohci_rh_resume =_ "snapshot resume? reinit\012"
    drivers/usb/host/ohci-hub.c:183 [ohci_hcd]ohci_rh_resume =_ "%swakeup root hub\012"
    drivers/usb/host/ohci-hub.c:178 [ohci_hcd]ohci_rh_resume =_ "%s root hub\012"
    drivers/usb/host/ohci-hub.c:168 [ohci_hcd]ohci_rh_resume =_ "duplicate resume\012"
    drivers/usb/host/ohci-hub.c:164 [ohci_hcd]ohci_rh_resume =_ "BIOS/SMM active, control %03x\012"
    drivers/usb/host/ohci-q.c:148 [ohci_hcd]periodic_link =_ "link %sed %p branch %d [%dus.], interval %d\012"
    drivers/usb/host/ohci-q.c:251 [ohci_hcd]ed_schedule =_ "ERR %d, interval %d msecs, load %d\012"
    drivers/usb/host/ohci-q.c:291 [ohci_hcd]periodic_unlink =_ "unlink %sed %p branch %d [%dus.], interval %d\012"
    drivers/usb/host/ohci-mem.c:112 [ohci_hcd]td_free =_ "no hash for td %p\012"
    drivers/usb/host/ohci-q.c:823 [ohci_hcd]td_done =_ "urb %p td %p (%d) cc %d, len=%d/%d\012"
    drivers/usb/host/ohci-q.c:789 [ohci_hcd]td_done =_ "urb %p iso td %p (%d) len %d cc %d\012"
    drivers/usb/host/ohci-q.c:891 [ohci_hcd]ed_halted =_ "urb %p path %s ep%d%s %08x cc %d --> status %d\012"
    drivers/usb/host/ohci-hub.c:84 [ohci_hcd]ohci_rh_suspend =_ "stopping schedules ...\012"
    drivers/usb/host/ohci-hub.c:72 [ohci_hcd]ohci_rh_suspend =_ "%s root hub\012"
    drivers/usb/host/ohci-hub.c:67 [ohci_hcd]ohci_rh_suspend =_ "already suspended\012"
    drivers/usb/host/ohci-hub.c:63 [ohci_hcd]ohci_rh_suspend =_ "needs reinit!\012"
    drivers/usb/host/ohci-hub.c:55 [ohci_hcd]ohci_rh_suspend =_ "resume/suspend?\012"
    drivers/usb/host/ohci-pci.c:48 [ohci_pci]ohci_quirk_amd756 =_ "AMD756 erratum 4 workaround\012"
    drivers/usb/host/ohci-pci.c:62 [ohci_pci]ohci_quirk_opti =_ "WARNING: OPTi workarounds unavailable\012"
    drivers/usb/host/ohci-pci.c:82 [ohci_pci]ohci_quirk_ns =_ "Using NSC SuperIO setup\012"
    drivers/usb/host/ohci-pci.c:98 [ohci_pci]ohci_quirk_zfmicro =_ "enabled Compaq ZFMicro chipset quirks\012"
    drivers/usb/host/ohci-pci.c:145 [ohci_pci]ohci_quirk_nec =_ "enabled NEC chipset lost interrupt quirk\012"
    drivers/usb/host/ohci-pci.c:160 [ohci_pci]ohci_quirk_amd700 =_ "enabled AMD prefetch quirk\012"
    drivers/usb/host/uhci-pci.c:173 [uhci_hcd]uhci_pci_suspend =_ "%s\012"
    drivers/usb/host/uhci-pci.c:210 [uhci_hcd]uhci_pci_resume =_ "%s\012"
    drivers/usb/host/uhci-q.c:1324 [uhci_hcd]uhci_submit_isochronous =_ "iso underrun %p (%u+%u < %u)\012"
    drivers/usb/host/uhci-q.c:687 [uhci_hcd]uhci_reserve_bandwidth =_ "%s dev %d ep%02x-%s, period %d, phase %d, %d us\012"
    drivers/usb/host/uhci-q.c:651 [uhci_hcd]uhci_check_bandwidth =_ "bandwidth allocation failed: period %d, phase %d, %d + %d us\012"
    drivers/usb/host/uhci-hub.c:309 [uhci_hcd]uhci_hub_control =_ "port %d portsc %04x,%02x\012"
    drivers/usb/host/uhci-q.c:720 [uhci_hcd]uhci_release_bandwidth =_ "%s dev %d ep%02x-%s, period %d, phase %d, %d us\012"
    drivers/usb/host/uhci-q.c:1198 [uhci_hcd]uhci_result_common =_ "%s: failed with status %x\012"
    drivers/usb/host/uhci-hcd.c:293 [uhci_hcd]suspend_rh =_ "%s%s\012"
    drivers/usb/host/uhci-hcd.c:742 [uhci_hcd]uhci_rh_suspend =_ "suspend failed because a port is resuming\012"
    drivers/usb/host/uhci-hcd.c:405 [uhci_hcd]wakeup_rh =_ "%s%s\012"
    drivers/usb/host/xhci.c:4912 [xhci_hcd]xhci_gen_setup =_ "Called HCD init\012"
    drivers/usb/host/xhci.c:4907 [xhci_hcd]xhci_gen_setup =_ "Calling HCD init\012"
    drivers/usb/host/xhci.c:4903 [xhci_hcd]xhci_gen_setup =_ "Enabling 64-bit DMA addresses.\012"
    drivers/usb/host/xhci.c:4897 [xhci_hcd]xhci_gen_setup =_ "Reset complete\012"
    drivers/usb/host/xhci.c:4892 [xhci_hcd]xhci_gen_setup =_ "Resetting HCD\012"
    drivers/usb/host/xhci.c:4809 [xhci_hcd]xhci_update_hub_device =_ "Slot %u Output Context:\012"
    drivers/usb/host/xhci.c:4796 [xhci_hcd]xhci_update_hub_device =_ "Slot %u Input Context:\012"
    drivers/usb/host/xhci.c:4795 [xhci_hcd]xhci_update_hub_device =_ "Set up %s for hub device.\012"
    drivers/usb/host/xhci.c:4788 [xhci_hcd]xhci_update_hub_device =_ "xHCI version %x doesn't need hub TT think time or number of ports\012"
    drivers/usb/host/xhci.c:4770 [xhci_hcd]xhci_update_hub_device =_ "xHCI version %x needs hub TT think time and number of ports\012"
    drivers/usb/host/xhci.c:4755 [xhci_hcd]xhci_update_hub_device =_ "Could not allocate xHCI TT structure.\012"
    drivers/usb/host/xhci.c:4741 [xhci_hcd]xhci_update_hub_device =_ "Could not allocate xHCI command structure.\012"
    drivers/usb/host/xhci.c:4304 [xhci_hcd]xhci_get_timeout_no_hub_lpm =_ "Device-initiated %s disabled due to long PEL %llu ms\012"
    drivers/usb/host/xhci.c:4300 [xhci_hcd]xhci_get_timeout_no_hub_lpm =_ "Device-initiated %s disabled due to long SEL %llu ms\012"
    drivers/usb/host/xhci.c:4428 [xhci_hcd]xhci_calculate_u2_timeout =_ "Hub-initiated U2 disabled due to long timeout %llu ms\012"
    drivers/usb/host/xhci.c:4378 [xhci_hcd]xhci_calculate_u1_timeout =_ "Hub-initiated U1 disabled due to long timeout %llu ms\012"
    drivers/usb/host/xhci.c:4508 [xhci_hcd]xhci_check_intel_tier_policy =_ "Plug device into first-tier hub to decrease power consumption.\012"
    drivers/usb/host/xhci.c:4506 [xhci_hcd]xhci_check_intel_tier_policy =_ "Disabling U1 link state for device below second-tier hub.\012"
    drivers/usb/host/xhci.c:4575 [xhci_hcd]xhci_calculate_lpm_timeout =_ "Hub-initiated %s disabled at request of driver %s\012"
    drivers/usb/host/xhci.c:4031 [xhci_hcd]xhci_change_max_exit_latency =_ "Slot %u Output Context:\012"
    drivers/usb/host/xhci.c:4025 [xhci_hcd]xhci_change_max_exit_latency =_ "Slot %u Input Context:\012"
    drivers/usb/host/xhci.c:4138 [xhci_hcd]xhci_set_usb2_hardware_lpm =_ "%s port %d USB2 hardware LPM\012"
    drivers/usb/host/xhci.c:3923 [xhci_hcd]xhci_setup_device =_ "Slot ID %d Output Context:\012"
    drivers/usb/host/xhci.c:3919 [xhci_hcd]xhci_setup_device =_ "Slot ID %d Input Context:\012"
    drivers/usb/host/xhci.c:3897 [xhci_hcd]xhci_setup_device =_ "Slot ID %d Output Context:\012"
    drivers/usb/host/xhci.c:3843 [xhci_hcd]xhci_setup_device =_ "Slot ID %d Input Context:\012"
    drivers/usb/host/xhci.c:3810 [xhci_hcd]xhci_setup_device =_ "Slot already in default state\012"
    drivers/usb/host/xhci.c:3701 [xhci_hcd]xhci_alloc_dev =_ "FIXME: allocate a command ring segment\012"
    drivers/usb/host/xhci.c:3646 [xhci_hcd]xhci_free_dev =_ "FIXME: allocate a command ring segment\012"
    drivers/usb/host/xhci.c:3578 [xhci_hcd]xhci_discover_or_reset_device =_ "Output context after successful reset device cmd:\012"
    drivers/usb/host/xhci.c:3530 [xhci_hcd]xhci_discover_or_reset_device =_ "Successful reset device command.\012"
    drivers/usb/host/xhci.c:3525 [xhci_hcd]xhci_discover_or_reset_device =_ "Not freeing device rings.\012"
    drivers/usb/host/xhci.c:3524 [xhci_hcd]xhci_discover_or_reset_device =_ "Can't reset device (slot ID %u) in %s state\012"
    drivers/usb/host/xhci.c:3499 [xhci_hcd]xhci_discover_or_reset_device =_ "FIXME: allocate a command ring segment\012"
    drivers/usb/host/xhci.c:3490 [xhci_hcd]xhci_discover_or_reset_device =_ "Couldn't allocate command structure.\012"
    drivers/usb/host/xhci.c:3481 [xhci_hcd]xhci_discover_or_reset_device =_ "Resetting device with slot ID %u\012"
    drivers/usb/host/xhci.c:3467 [xhci_hcd]xhci_discover_or_reset_device =_ "The device to be reset with slot ID %u does not match the udev. Re-allocate the device\012"
    drivers/usb/host/xhci.c:3452 [xhci_hcd]xhci_discover_or_reset_device =_ "The device to be reset with slot ID %u does not exist. Re-allocate the device\012"
    drivers/usb/host/xhci.c:3040 [xhci_hcd]xhci_calculate_streams_entries =_ "xHCI HW only supports %u stream ctx entries.\012"
    drivers/usb/host/xhci.c:3070 [xhci_hcd]xhci_calculate_streams_and_bitmask =_ "Ep 0x%x only supports %u stream IDs.\012"
    drivers/usb/host/xhci.c:3268 [xhci_hcd]xhci_alloc_streams =_ "Slot %u ep ctx %u now has streams.\012"
    drivers/usb/host/xhci.c:3219 [xhci_hcd]xhci_alloc_streams =_ "Need %u stream ctx entries for %u stream IDs.\012"
    drivers/usb/host/xhci.c:3173 [xhci_hcd]xhci_alloc_streams =_ "Could not allocate xHCI command structure.\012"
    drivers/usb/host/xhci.c:3167 [xhci_hcd]xhci_alloc_streams =_ "xHCI controller does not support streams.\012"
    drivers/usb/host/xhci.c:3162 [xhci_hcd]xhci_alloc_streams =_ "Driver wants %u stream IDs (including stream 0).\012"
    drivers/usb/host/xhci.c:2981 [xhci_hcd]xhci_endpoint_reset =_ "Endpoint 0x%x ep reset callback called\012"
    drivers/usb/host/xhci.c:2871 [xhci_hcd]xhci_setup_input_ctx_for_config_ep =_ "Input Context:\012"
    drivers/usb/host/xhci.c:2848 [xhci_hcd]xhci_reset_bandwidth =_ "%s called for udev %p\012"
    drivers/usb/host/xhci.c:2800 [xhci_hcd]xhci_check_bandwidth =_ "Output context after successful config ep cmd:\012"
    drivers/usb/host/xhci.c:2790 [xhci_hcd]xhci_check_bandwidth =_ "New Input Control Context:\012"
    drivers/usb/host/xhci.c:2751 [xhci_hcd]xhci_check_bandwidth =_ "%s called for udev %p\012"
    drivers/usb/host/xhci.c:1808 [xhci_hcd]xhci_add_endpoint =_ "add ep 0x%x, slot id %d, new drop flags = %#x, new add flags = %#x\012"
    drivers/usb/host/xhci.c:1786 [xhci_hcd]xhci_add_endpoint =_ "%s - could not initialize ep %#x\012"
    drivers/usb/host/xhci.c:1742 [xhci_hcd]xhci_add_endpoint =_ "xHCI %s - can't add slot or ep 0 %#x\012"
    drivers/usb/host/xhci.c:1696 [xhci_hcd]xhci_drop_endpoint =_ "drop ep 0x%x, slot id %d, new drop flags = %#x, new add flags = %#x\012"
    drivers/usb/host/xhci.c:1657 [xhci_hcd]xhci_drop_endpoint =_ "xHCI %s - can't drop slot or ep 0 %#x\012"
    drivers/usb/host/xhci.c:1653 [xhci_hcd]xhci_drop_endpoint =_ "%s called for udev %p\012"
    drivers/usb/host/xhci.c:1299 [xhci_hcd]xhci_check_maxpacket =_ "Slot %d output context\012"
    drivers/usb/host/xhci.c:1297 [xhci_hcd]xhci_check_maxpacket =_ "Slot %d input context\012"
    drivers/usb/host/xhci.c:1221 [xhci_hcd]xhci_check_args =_ "xHCI %s called with udev and virt_dev does not match\012"
    drivers/usb/host/xhci.c:1214 [xhci_hcd]xhci_check_args =_ "xHCI %s called with unaddressed device\012"
    drivers/usb/host/xhci.c:1206 [xhci_hcd]xhci_check_args =_ "xHCI %s called for root hub\012"
    drivers/usb/host/xhci.c:1202 [xhci_hcd]xhci_check_args =_ "xHCI %s called with invalid args\012"
    drivers/usb/host/xhci.c:1440 [xhci_hcd]xhci_urb_enqueue =_ "Ep 0x%x: URB %p submitted for non-responsive xHCI host.\012"
    drivers/usb/host/xhci.c:1339 [xhci_hcd]xhci_urb_enqueue =_ "urb submitted during PCI suspend\012"
    drivers/usb/host/xhci.c:1119 [xhci_hcd]xhci_resume =_ "%s: starting port polling.\012"
    drivers/usb/host/xhci.c:1073 [xhci_hcd]xhci_resume =_ "Start the secondary HCD\012"
    drivers/usb/host/xhci.c:1070 [xhci_hcd]xhci_resume =_ "Start the primary HCD\012"
    drivers/usb/host/xhci.c:1064 [xhci_hcd]xhci_resume =_ "Initialize the xhci_hcd\012"
    drivers/usb/host/xhci.c:1053 [xhci_hcd]xhci_resume =_ "xhci_stop completed - status = %x\012"
    drivers/usb/host/xhci.c:1050 [xhci_hcd]xhci_resume =_ "cleaning up memory\012"
    drivers/usb/host/xhci.c:1043 [xhci_hcd]xhci_resume =_ "// Disabling event ring interrupts\012"
    drivers/usb/host/xhci.c:1037 [xhci_hcd]xhci_resume =_ "Stop HCD\012"
    drivers/usb/host/xhci.c:912 [xhci_hcd]xhci_suspend =_ "%s: stopping port polling.\012"
    drivers/usb/host/xhci.c:617 [xhci_hcd]xhci_run =_ "Event ring:\012"
    drivers/usb/host/xhci.c:615 [xhci_hcd]xhci_run =_ "ERST memory map follows:\012"
    drivers/usb/host/xhci.c:610 [xhci_hcd]xhci_run =_ "Command ring memory map follows:\012"
    drivers/usb/host/xhci-mem.c:2046 [xhci_hcd]xhci_check_trb_in_td_math =_ "TRB math tests passed.\012"
    drivers/usb/host/xhci-mem.c:1189 [xhci_hcd]xhci_setup_addressable_virt_dev =_ "udev->ttport = 0x%x\012"
    drivers/usb/host/xhci-mem.c:1188 [xhci_hcd]xhci_setup_addressable_virt_dev =_ "udev->tt = %p\012"
    drivers/usb/host/xhci-mem.c:1149 [xhci_hcd]xhci_setup_addressable_virt_dev =_ "Set fake root hub portnum to %d\012"
    drivers/usb/host/xhci-mem.c:1148 [xhci_hcd]xhci_setup_addressable_virt_dev =_ "Set root hub portnum to %d\012"
    drivers/usb/host/xhci-mem.c:1130 [xhci_hcd]xhci_setup_addressable_virt_dev =_ "FIXME xHCI doesn't support wireless speeds\012"
    drivers/usb/host/xhci-mem.c:1030 [xhci_hcd]xhci_alloc_virt_device =_ "Set slot id %d dcbaa entry %p to 0x%llx\012"
    drivers/usb/host/xhci-mem.c:1000 [xhci_hcd]xhci_alloc_virt_device =_ "Slot %d input ctx = 0x%llx (dma)\012"
    drivers/usb/host/xhci-mem.c:992 [xhci_hcd]xhci_alloc_virt_device =_ "Slot %d output ctx = 0x%llx (dma)\012"
    drivers/usb/host/xhci-mem.c:855 [xhci_hcd]xhci_free_tt_info =_ "Bad real port.\012"
    drivers/usb/host/xhci-mem.c:724 [xhci_hcd]xhci_alloc_stream_info =_ "Setting stream %d ring ptr to 0x%08llx\012"
    drivers/usb/host/xhci-mem.c:669 [xhci_hcd]xhci_alloc_stream_info =_ "Command ring has no reserved TRBs available\012"
    drivers/usb/host/xhci-mem.c:667 [xhci_hcd]xhci_alloc_stream_info =_ "Allocating %u streams and %u stream context array entries.\012"
    drivers/usb/host/xhci-mem.c:417 [xhci_hcd]xhci_free_or_cache_endpoint_ring =_ "Ring cache full (%d rings), freeing ring\012"
    drivers/usb/host/xhci-mem.c:412 [xhci_hcd]xhci_free_or_cache_endpoint_ring =_ "Cached old ring, %d ring%s cached\012"
    drivers/usb/host/xhci-ring.c:3538 [xhci_hcd]xhci_queue_isoc_tx =_ "Isoc URB with zero packets?\012"
    drivers/usb/host/xhci-ring.c:3756 [xhci_hcd]xhci_queue_isoc_tx_prepare =_ "Driver uses different interval (%d microframe%s) than xHCI (%d microframe%s)\012"
    drivers/usb/host/xhci-ring.c:2763 [xhci_hcd]prepare_ring =_ "WARN halted endpoint, queueing URB anyway.\012"
    drivers/usb/host/xhci-ring.c:2846 [xhci_hcd]prepare_transfer =_ "Can't prepare ring for bad stream ID %u\012"
    drivers/usb/host/xhci-ring.c:3129 [xhci_hcd]queue_bulk_sg_tx =_ "Next boundary at %#x, end dma = %#x\012"
    drivers/usb/host/xhci-ring.c:2971 [xhci_hcd]xhci_queue_intr_tx =_ "Driver uses different interval (%d microframe%s) than xHCI (%d microframe%s)\012"
    drivers/usb/host/xhci-ring.c:1410 [xhci_hcd]handle_vendor_event =_ "Vendor specific event TRB type = %u\012"
    drivers/usb/host/xhci-ring.c:1467 [xhci_hcd]handle_device_notification =_ "Device Wake Notification event for slot ID %u\012"
    drivers/usb/host/xhci-ring.c:2144 [xhci_hcd]process_bulk_intr_td =_ "ep %#x - asked for %d bytes, %d bytes untransferred\012"
    drivers/usb/host/xhci-ring.c:1974 [xhci_hcd]process_ctrl_td =_ "Waiting for status stage event\012"
    drivers/usb/host/xhci-ring.c:1928 [xhci_hcd]process_ctrl_td =_ "TRB error code %u, halted endpoint index = %u\012"
    drivers/usb/host/xhci-ring.c:2523 [xhci_hcd]handle_tx_event =_ "Giveback URB %p, len = %d, expected = %d, status = %d\012"
    drivers/usb/host/xhci-ring.c:2481 [xhci_hcd]handle_tx_event =_ "event_trb is a no-op TRB. Skip it\012"
    drivers/usb/host/xhci-ring.c:2467 [xhci_hcd]handle_tx_event =_ "Found td. Clear skip flag.\012"
    drivers/usb/host/xhci-ring.c:2406 [xhci_hcd]handle_tx_event =_ "All tds on the ep_ring skipped. Clear skip flag.\012"
    drivers/usb/host/xhci-ring.c:2396 [xhci_hcd]handle_tx_event =_ "td_list is empty while skip flag set. Clear skip flag.\012"
    drivers/usb/host/xhci-ring.c:2390 [xhci_hcd]handle_tx_event =_ "Event TRB with TRB type ID %u\012"
    drivers/usb/host/xhci-ring.c:2361 [xhci_hcd]handle_tx_event =_ "Miss service interval error, set skip flag\012"
    drivers/usb/host/xhci-ring.c:2347 [xhci_hcd]handle_tx_event =_ "Overrun Event for slot %d ep %d still with TDs queued?\012"
    drivers/usb/host/xhci-ring.c:2342 [xhci_hcd]handle_tx_event =_ "overrun event on endpoint\012"
    drivers/usb/host/xhci-ring.c:2339 [xhci_hcd]handle_tx_event =_ "Underrun Event for slot %d ep %d still with TDs queued?\012"
    drivers/usb/host/xhci-ring.c:2334 [xhci_hcd]handle_tx_event =_ "underrun event on endpoint\012"
    drivers/usb/host/xhci-ring.c:2315 [xhci_hcd]handle_tx_event =_ "Babble error on endpoint\012"
    drivers/usb/host/xhci-ring.c:2311 [xhci_hcd]handle_tx_event =_ "Transfer error on endpoint\012"
    drivers/usb/host/xhci-ring.c:2301 [xhci_hcd]handle_tx_event =_ "Stalled endpoint\012"
    drivers/usb/host/xhci-ring.c:2298 [xhci_hcd]handle_tx_event =_ "Stopped on No-op or Link TRB\012"
    drivers/usb/host/xhci-ring.c:2295 [xhci_hcd]handle_tx_event =_ "Stopped on Transfer TRB\012"
    drivers/usb/host/xhci-ring.c:2266 [xhci_hcd]handle_tx_event =_ "Event ring:\012"
    drivers/usb/host/xhci-ring.c:2243 [xhci_hcd]handle_tx_event =_ "Event ring:\012"
    drivers/usb/host/xhci-ring.c:1646 [xhci_hcd]handle_port_status =_ "%s: starting port polling.\012"
    drivers/usb/host/xhci-ring.c:1587 [xhci_hcd]handle_port_status =_ "resume SS port %d finished\012"
    drivers/usb/host/xhci-ring.c:1575 [xhci_hcd]handle_port_status =_ "resume HS port %d\012"
    drivers/usb/host/xhci-ring.c:1559 [xhci_hcd]handle_port_status =_ "remote wake SS port %d\012"
    drivers/usb/host/xhci-ring.c:1550 [xhci_hcd]handle_port_status =_ "port resume event for port %d\012"
    drivers/usb/host/xhci-ring.c:1545 [xhci_hcd]handle_port_status =_ "resume root hub\012"
    drivers/usb/host/xhci-ring.c:1493 [xhci_hcd]handle_port_status =_ "Port Status Change Event for port %d\012"
    drivers/usb/host/xhci-ring.c:1151 [xhci_hcd]xhci_handle_cmd_reset_dev =_ "Completed reset device command.\012"
    drivers/usb/host/xhci-ring.c:932 [xhci_hcd]update_ring_for_set_deq_completion =_ "Unable to find new dequeue pointer\012"
    drivers/usb/host/xhci-ring.c:2606 [xhci_hcd]xhci_handle_event =_ "xHCI host dying, returning from event handler.\012"
    drivers/usb/host/xhci-ring.c:2671 [xhci_hcd]xhci_irq =_ "xHCI dying, ignoring interrupt. Shouldn't IRQs be disabled?\012"
    drivers/usb/host/xhci-ring.c:1778 [xhci_hcd]xhci_is_vendor_info_code =_ "Treating code as success.\012"
    drivers/usb/host/xhci-ring.c:1777 [xhci_hcd]xhci_is_vendor_info_code =_ "Vendor defined info completion code %u\012"
    drivers/usb/host/xhci-ring.c:1210 [xhci_hcd]xhci_handle_stopped_cmd_ring =_ "Turn aborted command %p to no-op\012"
    drivers/usb/host/xhci-ring.c:288 [xhci_hcd]xhci_abort_cmd_ring =_ "Abort command ring\012"
    drivers/usb/host/xhci-ring.c:1274 [xhci_hcd]xhci_handle_command_timeout =_ "Command timeout on stopped ring\012"
    drivers/usb/host/xhci-ring.c:1269 [xhci_hcd]xhci_handle_command_timeout =_ "xHCI host controller is dead.\012"
    drivers/usb/host/xhci-ring.c:1263 [xhci_hcd]xhci_handle_command_timeout =_ "Command timeout\012"
    drivers/usb/host/xhci-ring.c:277 [xhci_hcd]xhci_ring_cmd_db =_ "// Ding dong!\012"
    drivers/usb/host/xhci-hub.c:1142 [xhci_hcd]xhci_bus_suspend =_ "port %d not suspended\012"
    drivers/usb/host/xhci-hub.c:1126 [xhci_hcd]xhci_bus_suspend =_ "suspend failed because a port is resuming\012"
    drivers/usb/host/xhci-hub.c:1100 [xhci_hcd]xhci_hub_status_data =_ "%s: stopping port polling.\012"
    drivers/usb/host/xhci-hub.c:352 [xhci_hcd]xhci_disable_port =_ "disable port, actual port %d status  = 0x%x\012"
    drivers/usb/host/xhci-hub.c:344 [xhci_hcd]xhci_disable_port =_ "Ignoring request to disable SuperSpeed port.\012"
    drivers/usb/host/xhci-hub.c:402 [xhci_hcd]xhci_clear_port_change_bit =_ "clear port %s change, actual port %d status  = 0x%x\012"
    drivers/usb/host/xhci-hub.c:281 [xhci_hcd]xhci_stop_device =_ "Couldn't allocate command structure.\012"
    drivers/usb/host/xhci-hub.c:633 [xhci_hcd]xhci_get_port_status =_ "slot_id is zero\012"
    drivers/usb/host/xhci-hub.c:614 [xhci_hcd]xhci_get_port_status =_ "Resume USB2 port %d\012"
    drivers/usb/host/xhci-hub.c:1001 [xhci_hcd]xhci_hub_control =_ "slot_id is zero\012"
    drivers/usb/host/xhci-hub.c:981 [xhci_hcd]xhci_hub_control =_ "PORTSC %04x\012"
    drivers/usb/host/xhci-hub.c:980 [xhci_hcd]xhci_hub_control =_ "clear USB_PORT_FEAT_SUSPEND\012"
    drivers/usb/host/xhci-hub.c:936 [xhci_hcd]xhci_hub_control =_ "set port remote wake mask, actual port %d status  = 0x%x\012"
    drivers/usb/host/xhci-hub.c:928 [xhci_hcd]xhci_hub_control =_ "set port reset, actual port %d status  = 0x%x\012"
    drivers/usb/host/xhci-hub.c:913 [xhci_hcd]xhci_hub_control =_ "set port power, actual port %d status  = 0x%x\012"
    drivers/usb/host/xhci-hub.c:862 [xhci_hcd]xhci_hub_control =_ "Enable port %d\012"
    drivers/usb/host/xhci-hub.c:846 [xhci_hcd]xhci_hub_control =_ "Disable port %d\012"
    drivers/usb/host/xhci-hub.c:776 [xhci_hcd]xhci_hub_control =_ "Get port status returned 0x%x\012"
    drivers/usb/host/xhci-hub.c:775 [xhci_hcd]xhci_hub_control =_ "get port status, actual port %d status  = 0x%x\012"
    drivers/usb/host/xhci-hub.c:731 [xhci_hcd]xhci_hub_control =_ "Wrong hub descriptor type for USB 3.0 roothub.\012"
    drivers/usb/host/xhci-dbg.c:593 [xhci_hcd]xhci_dbg_trace =_ "%pV\012"
    drivers/usb/host/xhci-dbg.c:534 [xhci_hcd]xhci_dbg_ep_ctx =_ "@%p (virt) @%08llx (dma) %#08x - rsvd[%d]\012"
    drivers/usb/host/xhci-dbg.c:528 [xhci_hcd]xhci_dbg_ep_ctx =_ "@%p (virt) @%08llx (dma) %#08x - tx_info\012"
    drivers/usb/host/xhci-dbg.c:524 [xhci_hcd]xhci_dbg_ep_ctx =_ "@%p (virt) @%08llx (dma) %#08llx - deq\012"
    drivers/usb/host/xhci-dbg.c:520 [xhci_hcd]xhci_dbg_ep_ctx =_ "@%p (virt) @%08llx (dma) %#08x - ep_info2\012"
    drivers/usb/host/xhci-dbg.c:516 [xhci_hcd]xhci_dbg_ep_ctx =_ "@%p (virt) @%08llx (dma) %#08x - ep_info\012"
    drivers/usb/host/xhci-dbg.c:513 [xhci_hcd]xhci_dbg_ep_ctx =_ "%s Endpoint %02d Context (ep_index %02d):\012"
    drivers/usb/host/xhci-dbg.c:485 [xhci_hcd]xhci_dbg_slot_ctx =_ "@%p (virt) @%08llx (dma) %#08x - rsvd[%d]\012"
    drivers/usb/host/xhci-dbg.c:480 [xhci_hcd]xhci_dbg_slot_ctx =_ "@%p (virt) @%08llx (dma) %#08x - dev_state\012"
    drivers/usb/host/xhci-dbg.c:476 [xhci_hcd]xhci_dbg_slot_ctx =_ "@%p (virt) @%08llx (dma) %#08x - tt_info\012"
    drivers/usb/host/xhci-dbg.c:472 [xhci_hcd]xhci_dbg_slot_ctx =_ "@%p (virt) @%08llx (dma) %#08x - dev_info2\012"
    drivers/usb/host/xhci-dbg.c:468 [xhci_hcd]xhci_dbg_slot_ctx =_ "@%p (virt) @%08llx (dma) %#08x - dev_info\012"
    drivers/usb/host/xhci-dbg.c:465 [xhci_hcd]xhci_dbg_slot_ctx =_ "Slot Context:\012"
    drivers/usb/host/xhci-dbg.c:430 [xhci_hcd]dbg_rsvd64 =_ "@%p (virt) @%08llx (dma) %#08llx - rsvd64[%d]\012"
    drivers/usb/host/xhci-dbg.c:572 [xhci_hcd]xhci_dbg_ctx =_ "@%p (virt) @%08llx (dma) %#08x - rsvd2[%d]\012"
    drivers/usb/host/xhci-dbg.c:567 [xhci_hcd]xhci_dbg_ctx =_ "@%p (virt) @%08llx (dma) %#08x - add flags\012"
    drivers/usb/host/xhci-dbg.c:563 [xhci_hcd]xhci_dbg_ctx =_ "@%p (virt) @%08llx (dma) %#08x - drop flags\012"
    drivers/usb/host/xhci-dbg.c:419 [xhci_hcd]xhci_dbg_cmd_ptrs =_ "// xHC command ring deq ptr high bits = @%08x\012"
    drivers/usb/host/xhci-dbg.c:417 [xhci_hcd]xhci_dbg_cmd_ptrs =_ "// xHC command ring deq ptr low bits + flags = @%08x\012"
    drivers/usb/host/xhci-dbg.c:406 [xhci_hcd]xhci_dbg_erst =_ "@%016llx %08x %08x %08x %08x\012"
    drivers/usb/host/xhci-dbg.c:388 [xhci_hcd]xhci_dbg_ep_rings =_ "Dev %d endpoint ring %d:\012"
    drivers/usb/host/xhci-dbg.c:380 [xhci_hcd]xhci_dbg_ep_rings =_ "Dev %d endpoint %d stream ID %d:\012"
    drivers/usb/host/xhci-dbg.c:362 [xhci_hcd]xhci_debug_ring =_ "  Ring has not been updated\012"
    drivers/usb/host/xhci-dbg.c:342 [xhci_hcd]xhci_dbg_ring_ptrs =_ "Ring enq updated %u times\012"
    drivers/usb/host/xhci-dbg.c:340 [xhci_hcd]xhci_dbg_ring_ptrs =_ "Ring enq = %p (virt), 0x%llx (dma)\012"
    drivers/usb/host/xhci-dbg.c:336 [xhci_hcd]xhci_dbg_ring_ptrs =_ "Ring deq updated %u times\012"
    drivers/usb/host/xhci-dbg.c:334 [xhci_hcd]xhci_dbg_ring_ptrs =_ "Ring deq = %p (virt), 0x%llx (dma)\012"
    drivers/usb/host/xhci-dbg.c:324 [xhci_hcd]xhci_debug_segment =_ "@%016llx %08x %08x %08x %08x\012"
    drivers/usb/host/xhci-dbg.c:293 [xhci_hcd]xhci_debug_trb =_ "Unknown TRB with TRB type ID %u\012"
    drivers/usb/host/xhci-dbg.c:289 [xhci_hcd]xhci_debug_trb =_ "Flags = 0x%x\012"
    drivers/usb/host/xhci-dbg.c:287 [xhci_hcd]xhci_debug_trb =_ "Completion status = %u\012"
    drivers/usb/host/xhci-dbg.c:285 [xhci_hcd]xhci_debug_trb =_ "Command TRB pointer = %llu\012"
    drivers/usb/host/xhci-dbg.c:281 [xhci_hcd]xhci_debug_trb =_ "DMA address or buffer contents= %llu\012"
    drivers/usb/host/xhci-dbg.c:273 [xhci_hcd]xhci_debug_trb =_ "No Snoop bit = %u\012"
    drivers/usb/host/xhci-dbg.c:271 [xhci_hcd]xhci_debug_trb =_ "Toggle cycle bit = %u\012"
    drivers/usb/host/xhci-dbg.c:269 [xhci_hcd]xhci_debug_trb =_ "Cycle bit = %u\012"
    drivers/usb/host/xhci-dbg.c:267 [xhci_hcd]xhci_debug_trb =_ "Interrupter target = 0x%x\012"
    drivers/usb/host/xhci-dbg.c:264 [xhci_hcd]xhci_debug_trb =_ "Next ring segment DMA address = 0x%llx\012"
    drivers/usb/host/xhci-dbg.c:260 [xhci_hcd]xhci_debug_trb =_ "Link TRB:\012"
    drivers/usb/host/xhci-dbg.c:247 [xhci_hcd]xhci_print_trb_offsets =_ "Offset 0x%x = 0x%x\012"
    drivers/usb/host/xhci-dbg.c:166 [xhci_hcd]xhci_print_ports =_ "%p port %s reg = 0x%x\012"
    drivers/usb/host/xhci-dbg.c:138 [xhci_hcd]xhci_print_status =_ "  HC is %s\012"
    drivers/usb/host/xhci-dbg.c:136 [xhci_hcd]xhci_print_status =_ "  %sHost System Error\012"
    drivers/usb/host/xhci-dbg.c:134 [xhci_hcd]xhci_print_status =_ "  Event ring is %sempty\012"
    drivers/usb/host/xhci-dbg.c:132 [xhci_hcd]xhci_print_status =_ "USBSTS 0x%x:\012"
    drivers/usb/host/xhci-dbg.c:124 [xhci_hcd]xhci_print_command_reg =_ "  HC has %sfinished light reset\012"
    drivers/usb/host/xhci-dbg.c:122 [xhci_hcd]xhci_print_command_reg =_ "  Host System Error Interrupts %s\012"
    drivers/usb/host/xhci-dbg.c:120 [xhci_hcd]xhci_print_command_reg =_ "  Event Interrupts %s\012"
    drivers/usb/host/xhci-dbg.c:118 [xhci_hcd]xhci_print_command_reg =_ "  HC has %sfinished hard reset\012"
    drivers/usb/host/xhci-dbg.c:116 [xhci_hcd]xhci_print_command_reg =_ "  HC is %s\012"
    drivers/usb/host/xhci-dbg.c:114 [xhci_hcd]xhci_print_command_reg =_ "USBCMD 0x%x:\012"
    drivers/usb/host/xhci-dbg.c:143 [xhci_hcd]xhci_print_op_regs =_ "xHCI operational registers at %p:\012"
    drivers/usb/host/xhci-dbg.c:106 [xhci_hcd]xhci_print_cap_regs =_ "RTSOFF 0x%x:\012"
    drivers/usb/host/xhci-dbg.c:103 [xhci_hcd]xhci_print_cap_regs =_ "  FIXME: more HCCPARAMS debugging\012"
    drivers/usb/host/xhci-dbg.c:101 [xhci_hcd]xhci_print_cap_regs =_ "  HC generates %s bit addresses\012"
    drivers/usb/host/xhci-dbg.c:99 [xhci_hcd]xhci_print_cap_regs =_ "HCC PARAMS 0x%x:\012"
    drivers/usb/host/xhci-dbg.c:96 [xhci_hcd]xhci_print_cap_regs =_ "  Worst case U2 device exit latency: %u\012"
    drivers/usb/host/xhci-dbg.c:94 [xhci_hcd]xhci_print_cap_regs =_ "  Worst case U1 device exit latency: %u\012"
    drivers/usb/host/xhci-dbg.c:92 [xhci_hcd]xhci_print_cap_regs =_ "HCSPARAMS 3 0x%x:\012"
    drivers/usb/host/xhci-dbg.c:88 [xhci_hcd]xhci_print_cap_regs =_ "  Maximum allowed segments in event ring: %u\012"
    drivers/usb/host/xhci-dbg.c:86 [xhci_hcd]xhci_print_cap_regs =_ "  Isoc scheduling threshold: %u\012"
    drivers/usb/host/xhci-dbg.c:84 [xhci_hcd]xhci_print_cap_regs =_ "HCSPARAMS 2: 0x%x\012"
    drivers/usb/host/xhci-dbg.c:80 [xhci_hcd]xhci_print_cap_regs =_ "  Max ports: %u\012"
    drivers/usb/host/xhci-dbg.c:78 [xhci_hcd]xhci_print_cap_regs =_ "  Max interrupters: %u\012"
    drivers/usb/host/xhci-dbg.c:76 [xhci_hcd]xhci_print_cap_regs =_ "  Max device slots: %u\012"
    drivers/usb/host/xhci-dbg.c:74 [xhci_hcd]xhci_print_cap_regs =_ "HCSPARAMS 1: 0x%x\012"
    drivers/usb/host/xhci-dbg.c:70 [xhci_hcd]xhci_print_cap_regs =_ "HCIVERSION: 0x%x\012"
    drivers/usb/host/xhci-dbg.c:68 [xhci_hcd]xhci_print_cap_regs =_ "CAPLENGTH: 0x%x\012"
    drivers/usb/host/xhci-dbg.c:66 [xhci_hcd]xhci_print_cap_regs =_ "CAPLENGTH AND HCIVERSION 0x%x:\012"
    drivers/usb/host/xhci-dbg.c:62 [xhci_hcd]xhci_print_cap_regs =_ "xHCI capability registers at %p:\012"
    drivers/usb/host/xhci-dbg.c:231 [xhci_hcd]xhci_print_run_regs =_ "  WARN: %p: Rsvd[%i] = 0x%x\012"
    drivers/usb/host/xhci-dbg.c:225 [xhci_hcd]xhci_print_run_regs =_ "  %p: Microframe index = 0x%x\012"
    drivers/usb/host/xhci-dbg.c:221 [xhci_hcd]xhci_print_run_regs =_ "xHCI runtime registers at %p:\012"
    drivers/usb/host/xhci-dbg.c:213 [xhci_hcd]xhci_print_ir_set =_ "  %p: ir_set.erst_dequeue = @%08llx\012"
    drivers/usb/host/xhci-dbg.c:208 [xhci_hcd]xhci_print_ir_set =_ "  %p: ir_set.erst_base = @%08llx\012"
    drivers/usb/host/xhci-dbg.c:203 [xhci_hcd]xhci_print_ir_set =_ "  WARN: %p: ir_set.rsvd = 0x%x\012"
    drivers/usb/host/xhci-dbg.c:197 [xhci_hcd]xhci_print_ir_set =_ "  %p: ir_set.erst_size = 0x%x\012"
    drivers/usb/host/xhci-dbg.c:192 [xhci_hcd]xhci_print_ir_set =_ "  %p: ir_set.control = 0x%x\012"
    drivers/usb/host/xhci-dbg.c:187 [xhci_hcd]xhci_print_ir_set =_ "  %p: ir_set.pending = 0x%x\012"
    drivers/usb/host/xhci-dbg.c:184 [xhci_hcd]xhci_print_ir_set =_ "  %p: ir_set[%i]\012"
    drivers/usb/host/xhci-dbg.c:55 [xhci_hcd]xhci_dbg_regs =_ "// Doorbell array at %p:\012"
    drivers/usb/host/xhci-dbg.c:54 [xhci_hcd]xhci_dbg_regs =_ "// @%p = 0x%x DBOFF\012"
    drivers/usb/host/xhci-dbg.c:51 [xhci_hcd]xhci_dbg_regs =_ "// xHCI runtime registers at %p:\012"
    drivers/usb/host/xhci-dbg.c:50 [xhci_hcd]xhci_dbg_regs =_ "// @%p = 0x%x RTSOFF\012"
    drivers/usb/host/xhci-dbg.c:45 [xhci_hcd]xhci_dbg_regs =_ "// xHCI operational registers at %p:\012"
    drivers/usb/host/xhci-dbg.c:39 [xhci_hcd]xhci_dbg_regs =_ "//   CAPLENGTH: 0x%x\012"
    drivers/usb/host/xhci-dbg.c:37 [xhci_hcd]xhci_dbg_regs =_ "// @%p = 0x%x (CAPLENGTH AND HCIVERSION)\012"
    drivers/usb/host/xhci-dbg.c:34 [xhci_hcd]xhci_dbg_regs =_ "// xHCI capability registers at %p:\012"
    drivers/usb/phy/phy.c:244 [phy]usb_get_phy_dev =_ "unable to find transceiver\012"
    drivers/usb/phy/phy.c:185 [phy]devm_usb_get_phy_by_phandle =_ "failed to get %s phandle in %s node\012"
    drivers/usb/phy/phy.c:178 [phy]devm_usb_get_phy_by_phandle =_ "device does not have a device node entry\012"
    drivers/usb/phy/phy.c:139 [phy]usb_get_phy =_ "PHY: unable to find transceiver of type %s\012"
    drivers/input/input.c:2047 [input_core]devm_input_device_unregister =_ "%s: unregistering device %s\012"
    drivers/input/input.c:2153 [input_core]input_register_device =_ "%s: registering %s with devres.\012"
    drivers/input/input.c:1819 [input_core]devm_input_device_release =_ "%s: dropping reference to %s\012"
    drivers/input/ff-core.c:249 [input_core]flush_effects =_ "flushing now\012"
    drivers/input/ff-core.c:127 [input_core]input_ff_upload =_ "invalid or not supported wave form in upload\012"
    drivers/input/ff-core.c:119 [input_core]input_ff_upload =_ "invalid or not supported effect type in upload\012"
    drivers/input/keyboard/atkbd.c:448 [atkbd]atkbd_interrupt =_ "Keyboard on %s reports too many keys pressed.\012"
    drivers/input/keyboard/atkbd.c:382 [atkbd]atkbd_interrupt =_ "Received %02x flags %02x\012"
    drivers/input/keyboard/atkbd.c:1227 [atkbd]atkbd_reconnect =_ "reconnect request, but serio is disconnected, ignoring...\012"
    drivers/rtc/class.c:67 [rtc_core]rtc_suspend =_ "%s:  fail to read rtc time\012"
    drivers/rtc/class.c:128 [rtc_core]rtc_resume =_ "%s:  time travel!\012"
    drivers/rtc/class.c:121 [rtc_core]rtc_resume =_ "%s:  bogus resume time\012"
    drivers/rtc/class.c:116 [rtc_core]rtc_resume =_ "%s:  fail to read rtc time\012"
    drivers/rtc/interface.c:300 [rtc_core]__rtc_read_alarm =_ "alarm rollover: %s\012"
    drivers/rtc/interface.c:285 [rtc_core]__rtc_read_alarm =_ "alarm rollover: %s\012"
    drivers/rtc/interface.c:274 [rtc_core]__rtc_read_alarm =_ "alarm rollover: %s\012"
    drivers/rtc/rtc-dev.c:489 [rtc_core]rtc_dev_add_device =_ "%s: dev (%d:%d)\012"
    drivers/rtc/rtc-dev.c:467 [rtc_core]rtc_dev_prepare =_ "%s: too many RTC devices\012"
    drivers/rtc/rtc-cmos.c:894 [rtc_cmos]cmos_suspend =_ "suspend%s, ctrl %02x\012"
    drivers/rtc/rtc-cmos.c:954 [rtc_cmos]cmos_resume =_ "resume, ctrl %02x\012"
    drivers/rtc/rtc-cmos.c:795 [rtc_cmos]cmos_do_probe =_ "can't create nvram file? %d\012"
    drivers/rtc/rtc-cmos.c:785 [rtc_cmos]cmos_do_probe =_ "IRQ %d is already in use\012"
    drivers/rtc/rtc-cmos.c:671 [rtc_cmos]cmos_do_probe =_ "i/o registers already in use\012"
    drivers/rtc/rtc-cmos.c:1036 [rtc_cmos]cmos_wake_setup =_ "bogus FADT month_alarm (%d)\012"
    drivers/i2c/i2c-boardinfo.c:76 [i2c_boardinfo]i2c_register_board_info =_ "i2c-core: can't register boardinfo!\012"
    drivers/i2c/i2c-core.c:2516 [i2c_core]i2c_smbus_check_pec =_ "i2c-core: Bad PEC 0x%02x vs. 0x%02x\012"
    drivers/i2c/i2c-core.c:2431 [i2c_core]i2c_new_probed_device =_ "Probing failed, no device found\012"
    drivers/i2c/i2c-core.c:2421 [i2c_core]i2c_new_probed_device =_ "Address 0x%02x already in use, not probing\012"
    drivers/i2c/i2c-core.c:2175 [i2c_core]i2c_transfer =_ "I2C level transfers not supported\012"
    drivers/i2c/i2c-core.c:1897 [i2c_core]i2c_del_driver =_ "i2c-core: driver [%s] unregistered\012"
    drivers/i2c/i2c-core.c:1870 [i2c_core]i2c_register_driver =_ "i2c-core: driver [%s] registered\012"
    drivers/i2c/i2c-core.c:1712 [i2c_core]i2c_do_del_adapter =_ "Removing %s at 0x%x\012"
    drivers/i2c/i2c-core.c:1797 [i2c_core]i2c_del_adapter =_ "adapter [%s] unregistered\012"
    drivers/i2c/i2c-core.c:1777 [i2c_core]i2c_del_adapter =_ "Removing %s at 0x%x\012"
    drivers/i2c/i2c-core.c:1760 [i2c_core]i2c_del_adapter =_ "i2c-core: attempting to delete unregistered adapter [%s]\012"
    drivers/i2c/i2c-core.c:2337 [i2c_core]i2c_detect_address =_ "Creating %s at 0x%02x\012"
    drivers/i2c/i2c-core.c:2381 [i2c_core]i2c_detect =_ "found normal entry for adapter %d, addr 0x%02x\012"
    drivers/i2c/i2c-core.c:2365 [i2c_core]i2c_detect =_ "This adapter dropped support for I2C classes and won't auto-detect %s devices anymore. If you need it, check 'Documentation/i2c/instantiating-devices' for alternatives.\012"
    drivers/i2c/i2c-core.c:1544 [i2c_core]i2c_register_adapter =_ "adapter [%s] registered\012"
    drivers/i2c/i2c-core.c:1104 [i2c_core]i2c_new_device =_ "client [%s] registered with bus id %s\012"
    drivers/i2c/i2c-core.c:495 [i2c_core]i2c_device_uevent =_ "uevent\012"
    drivers/i2c/i2c-core.c:653 [i2c_core]i2c_device_probe =_ "probe\012"
    drivers/i2c/i2c-core.c:681 [i2c_core]i2c_device_remove =_ "remove\012"
    drivers/i2c/i2c-core.c:621 [i2c_core]i2c_recover_bus =_ "Trying i2c bus recovery\012"
    drivers/i2c/i2c-dev.c:152 [i2c_dev]i2cdev_read =_ "i2c-dev: i2c-%d reading %zu bytes.\012"
    drivers/i2c/i2c-dev.c:176 [i2c_dev]i2cdev_write =_ "i2c-dev: i2c-%d writing %zu bytes.\012"
    drivers/i2c/i2c-dev.c:375 [i2c_dev]i2cdev_ioctl_smbus =_ "data is NULL pointer in ioctl I2C_SMBUS.\012"
    drivers/i2c/i2c-dev.c:359 [i2c_dev]i2cdev_ioctl_smbus =_ "read_write out of range (%x) in ioctl I2C_SMBUS.\012"
    drivers/i2c/i2c-dev.c:350 [i2c_dev]i2cdev_ioctl_smbus =_ "size out of range (%x) in ioctl I2C_SMBUS.\012"
    drivers/i2c/i2c-dev.c:419 [i2c_dev]i2cdev_ioctl =_ "ioctl, cmd=0x%02x, arg=0x%02lx\012"
    drivers/i2c/i2c-dev.c:568 [i2c_dev]i2cdev_attach_adapter =_ "i2c-dev: adapter [%s] registered as minor %d\012"
    drivers/i2c/i2c-dev.c:591 [i2c_dev]i2cdev_detach_adapter =_ "i2c-dev: adapter [%s] unregistered\012"
    drivers/power/power_supply_core.c:377 [power_supply]power_supply_dev_release =_ "device: '%s': %s\012"
    drivers/power/power_supply_core.c:78 [power_supply]power_supply_changed_work =_ "%s\012"
    drivers/power/power_supply_core.c:276 [power_supply]power_supply_am_i_supplied =_ "%s %d\012"
    drivers/power/power_supply_core.c:114 [power_supply]power_supply_changed =_ "%s\012"
    drivers/power/power_supply_sysfs.c:324 [power_supply]power_supply_uevent =_ "prop %s=%s\012"
    drivers/power/power_supply_sysfs.c:287 [power_supply]power_supply_uevent =_ "POWER_SUPPLY_NAME=%s\012"
    drivers/power/power_supply_sysfs.c:283 [power_supply]power_supply_uevent =_ "No power supply yet\012"
    drivers/power/power_supply_sysfs.c:280 [power_supply]power_supply_uevent =_ "uevent\012"
    drivers/power/power_supply_sysfs.c:84 [power_supply]power_supply_show_property =_ "driver has no data for `%s' property\012"
    drivers/power/power_supply_leds.c:121 [power_supply]power_supply_update_gen_leds =_ "%s %d\012"
    drivers/power/power_supply_leds.c:31 [power_supply]power_supply_update_bat_leds =_ "%s %d\012"
    drivers/power/charger-manager.c:686 [charger_manager]_cm_monitor =_ "Charging/Discharging duration is out of range\012"
    drivers/hwmon/hwmon.c:167 [hwmon]hwmon_device_unregister =_ "hwmon_device_unregister() failed: bad class ID!\012"
    drivers/thermal/thermal_core.c:1301 [thermal_sys]thermal_cdev_update =_ "set to state %lu\012"
    drivers/thermal/thermal_core.c:1291 [thermal_sys]thermal_cdev_update =_ "zone%d->target=%lu\012"
    drivers/thermal/thermal_core.c:473 [thermal_sys]update_temperature =_ "last_temperature=%d, current_temperature=%d\012"
    drivers/thermal/thermal_hwmon.c:251 [thermal_sys]thermal_remove_hwmon_sysfs =_ "temperature input lookup failed!\012"
    drivers/thermal/thermal_hwmon.c:244 [thermal_sys]thermal_remove_hwmon_sysfs =_ "hwmon device lookup failed!\012"
    drivers/thermal/gov_bang_bang.c:67 [thermal_sys]thermal_zone_trip_update =_ "target=%d\012"
    drivers/thermal/gov_bang_bang.c:37 [thermal_sys]thermal_zone_trip_update =_ "Trip%d[temp=%ld]:temp=%d:hyst=%ld\012"
    drivers/thermal/step_wise.c:64 [thermal_sys]get_target_state =_ "cur_state=%ld\012"
    drivers/thermal/step_wise.c:150 [thermal_sys]thermal_zone_trip_update =_ "old_target=%d, target=%d\012"
    drivers/thermal/step_wise.c:139 [thermal_sys]thermal_zone_trip_update =_ "Trip%d[type=%d,temp=%ld]:trend=%d,throttle=%d\012"
    drivers/md/md.c:8395 [md_mod]md_geninit =_ "md: sizeof(mdp_super_t) = %d\012"
    drivers/md/md.c:6655 [md_mod]md_unregister_thread =_ "interrupting MD-thread pid %d\012"
    drivers/md/md.c:6617 [md_mod]md_wakeup_thread =_ "md: waking up MD thread %s.\012"
    drivers/md/md.c:2324 [md_mod]md_update_sb =_ "md: %s (skipping faulty)\012"
    drivers/md/md.c:2312 [md_mod]md_update_sb =_ "md: (write) %s's sb offset: %llu\012"
    drivers/md/md.c:2297 [md_mod]md_update_sb =_ "md: updating %s RAID superblock on device (in sync %d)\012"
    drivers/md/bitmap.c:358 [md_mod]read_page =_ "read bitmap file (%dB @ %llu)\012"
    drivers/md/bitmap.c:1344 [md_mod]bitmap_endwrite =_ "dec write-behind count %d/%lu\012"
    drivers/md/bitmap.c:860 [md_mod]bitmap_file_set_bit =_ "set file bit %lu page %lu\012"
    drivers/md/bitmap.c:1283 [md_mod]bitmap_startwrite =_ "inc write-behind count %d/%lu\012"
    drivers/md/bitmap.c:92 [md_mod]bitmap_checkpage =_ "md/bitmap: map page allocation failed, hijacking\012"
    drivers/cpufreq/cpufreq.c:2562 [cpufreq]cpufreq_unregister_driver =_ "unregistering driver %s\012"
    drivers/cpufreq/cpufreq.c:429 [cpufreq]store_boost =_ "%s: cpufreq BOOST %s\012"
    drivers/cpufreq/cpufreq.c:955 [cpufreq]cpufreq_init_policy =_ "setting policy failed\012"
    drivers/cpufreq/cpufreq.c:942 [cpufreq]cpufreq_init_policy =_ "Restoring governor %s for cpu %d\012"
    drivers/cpufreq/cpufreq.c:887 [cpufreq]cpufreq_add_dev_symlink =_ "Adding link for CPU: %u\012"
    drivers/cpufreq/cpufreq.c:1506 [cpufreq]handle_update =_ "handle_update for cpu %u called\012"
    drivers/cpufreq/cpufreq.c:817 [cpufreq]cpufreq_sysfs_release =_ "last reference is dropped\012"
    drivers/cpufreq/cpufreq.c:1295 [cpufreq]__cpufreq_add_dev =_ "initialization complete\012"
    drivers/cpufreq/cpufreq.c:1182 [cpufreq]__cpufreq_add_dev =_ "initialization failed\012"
    drivers/cpufreq/cpufreq.c:1120 [cpufreq]__cpufreq_add_dev =_ "adding CPU %u\012"
    drivers/cpufreq/cpufreq.c:1068 [cpufreq]cpufreq_policy_put_kobj =_ "wait complete\012"
    drivers/cpufreq/cpufreq.c:1066 [cpufreq]cpufreq_policy_put_kobj =_ "waiting for dropping of refcount\012"
    drivers/cpufreq/cpufreq.c:1425 [cpufreq]__cpufreq_remove_dev_finish =_ "%s: No cpu_data found\012"
    drivers/cpufreq/cpufreq.c:1403 [cpufreq]__cpufreq_remove_dev_prepare =_ "%s: policy Kobject moved to cpu: %d from: %d\012"
    drivers/cpufreq/cpufreq.c:1364 [cpufreq]__cpufreq_remove_dev_prepare =_ "%s: No cpu_data found\012"
    drivers/cpufreq/cpufreq.c:1351 [cpufreq]__cpufreq_remove_dev_prepare =_ "%s: unregistering CPU %u\012"
    drivers/cpufreq/cpufreq.c:2531 [cpufreq]cpufreq_register_driver =_ "driver %s up and running\012"
    drivers/cpufreq/cpufreq.c:2525 [cpufreq]cpufreq_register_driver =_ "no CPU initialized for driver %s\012"
    drivers/cpufreq/cpufreq.c:2473 [cpufreq]cpufreq_register_driver =_ "trying to register driver %s, cpufreq_driver=%s\012"
    drivers/cpufreq/cpufreq.c:2268 [cpufreq]cpufreq_set_policy =_ "governor: change or update limits\012"
    drivers/cpufreq/cpufreq.c:2258 [cpufreq]cpufreq_set_policy =_ "starting governor %s failed\012"
    drivers/cpufreq/cpufreq.c:2234 [cpufreq]cpufreq_set_policy =_ "governor switch\012"
    drivers/cpufreq/cpufreq.c:2227 [cpufreq]cpufreq_set_policy =_ "setting range\012"
    drivers/cpufreq/cpufreq.c:2223 [cpufreq]cpufreq_set_policy =_ "new min and max freqs are %u - %u kHz\012"
    drivers/cpufreq/cpufreq.c:2187 [cpufreq]cpufreq_set_policy =_ "setting new policy for CPU %u: %u - %u kHz\012"
    drivers/cpufreq/cpufreq.c:2309 [cpufreq]cpufreq_update_policy =_ "Driver did not initialize current freq\012"
    drivers/cpufreq/cpufreq.c:2290 [cpufreq]cpufreq_update_policy =_ "updating policy for CPU %u\012"
    drivers/cpufreq/cpufreq.c:1866 [cpufreq]__target_intermediate =_ "%s: cpu: %d, switching to intermediate freq: oldfreq: %u, intermediate freq: %u\012"
    drivers/cpufreq/cpufreq.c:1903 [cpufreq]__target_index =_ "%s: cpu: %d, oldfreq: %u, new freq: %u\012"
    drivers/cpufreq/cpufreq.c:1950 [cpufreq]__cpufreq_driver_target =_ "target for CPU %u: %u kHz, relation %u, requested %u kHz\012"
    drivers/cpufreq/cpufreq.c:1717 [cpufreq]cpufreq_resume =_ "%s: Resuming Governors\012"
    drivers/cpufreq/cpufreq.c:2058 [cpufreq]__cpufreq_governor =_ "__cpufreq_governor for CPU %u, event %u\012"
    drivers/cpufreq/cpufreq.c:1683 [cpufreq]cpufreq_suspend =_ "%s: Suspending Governors\012"
    drivers/cpufreq/cpufreq.c:1653 [cpufreq]cpufreq_generic_suspend =_ "%s: Setting suspend-freq: %u\012"
    drivers/cpufreq/cpufreq.c:1528 [cpufreq]cpufreq_out_of_sync =_ "Warning: CPU frequency out of sync: cpufreq and timing core thinks of %u, is %u kHz\012"
    drivers/cpufreq/cpufreq.c:316 [cpufreq]__cpufreq_notify_transition =_ "FREQ: %lu - CPU: %lu\012"
    drivers/cpufreq/cpufreq.c:304 [cpufreq]__cpufreq_notify_transition =_ "Warning: CPU frequency is %u, cpufreq assumed %u kHz\012"
    drivers/cpufreq/cpufreq.c:291 [cpufreq]__cpufreq_notify_transition =_ "notification %u of frequency transition to %u kHz\012"
    drivers/cpufreq/freq_table.c:204 [freq_table]cpufreq_frequency_table_get_index =_ "%s: Unable to find frequency table\012"
    drivers/cpufreq/freq_table.c:191 [freq_table]cpufreq_frequency_table_target =_ "target index is %u, freq is:%u kHz\012"
    drivers/cpufreq/freq_table.c:123 [freq_table]cpufreq_frequency_table_target =_ "request for target %u kHz (relation: %u) for cpu %u\012"
    drivers/cpufreq/freq_table.c:84 [freq_table]cpufreq_frequency_table_verify =_ "verification lead to (%u - %u kHz) for cpu %u\012"
    drivers/cpufreq/freq_table.c:62 [freq_table]cpufreq_frequency_table_verify =_ "request for verification of policy (%u - %u kHz) for cpu %u\012"
    drivers/cpufreq/freq_table.c:36 [freq_table]cpufreq_frequency_table_cpuinfo =_ "table entry %u: %u kHz\012"
    drivers/cpufreq/cpufreq_stats.c:161 [cpufreq_stats]__cpufreq_stats_free_table =_ "%s: Free stat table\012"
    drivers/cpufreq/cpufreq_stats.c:268 [cpufreq_stats]cpufreq_stats_update_policy_cpu =_ "Updating stats_table for new_cpu %u from last_cpu %u\012"
    drivers/cpufreq/cpufreq_performance.c:26 [cpufreq_performance]cpufreq_governor_performance =_ "setting to %u kHz because of event %u\012"
    drivers/cpufreq/cpufreq_powersave.c:26 [cpufreq_powersave]cpufreq_governor_powersave =_ "setting to %u kHz because of event %u\012"
    drivers/cpufreq/cpufreq_userspace.c:78 [cpufreq_userspace]cpufreq_governor_userspace =_ "limit event for cpu %u: %u - %u kHz, currently %u kHz\012"
    drivers/cpufreq/cpufreq_userspace.c:68 [cpufreq_userspace]cpufreq_governor_userspace =_ "managing cpu %u stopped\012"
    drivers/cpufreq/cpufreq_userspace.c:61 [cpufreq_userspace]cpufreq_governor_userspace =_ "started managing cpu %u\012"
    drivers/cpufreq/cpufreq_userspace.c:35 [cpufreq_userspace]cpufreq_set =_ "cpufreq_set for cpu %u, freq %u kHz\012"
    drivers/cpufreq/acpi-cpufreq.c:574 [acpi_cpufreq]acpi_cpufreq_early_init =_ "Memory allocation error for acpi_perf_data.\012"
    drivers/cpufreq/acpi-cpufreq.c:570 [acpi_cpufreq]acpi_cpufreq_early_init =_ "acpi_cpufreq_early_init\012"
    drivers/cpufreq/acpi-cpufreq.c:958 [acpi_cpufreq]acpi_cpufreq_init =_ "adding sysfs entry for cpb\012"
    drivers/cpufreq/acpi-cpufreq.c:942 [acpi_cpufreq]acpi_cpufreq_init =_ "acpi_cpufreq_init\012"
    drivers/cpufreq/acpi-cpufreq.c:388 [acpi_cpufreq]get_cur_freq_on_cpu =_ "cur freq = %u\012"
    drivers/cpufreq/acpi-cpufreq.c:371 [acpi_cpufreq]get_cur_freq_on_cpu =_ "get_cur_freq_on_cpu (%d)\012"
    drivers/cpufreq/acpi-cpufreq.c:827 [acpi_cpufreq]acpi_cpufreq_cpu_init =_ "     %cP%d: %d MHz, %d mW, %d uS\012"
    drivers/cpufreq/acpi-cpufreq.c:821 [acpi_cpufreq]acpi_cpufreq_cpu_init =_ "CPU%u - ACPI performance management activated.\012"
    drivers/cpufreq/acpi-cpufreq.c:751 [acpi_cpufreq]acpi_cpufreq_cpu_init =_ "Unknown addr space %d\012"
    drivers/cpufreq/acpi-cpufreq.c:738 [acpi_cpufreq]acpi_cpufreq_cpu_init =_ "HARDWARE addr space\012"
    drivers/cpufreq/acpi-cpufreq.c:734 [acpi_cpufreq]acpi_cpufreq_cpu_init =_ "SYSTEM IO addr space\012"
    drivers/cpufreq/acpi-cpufreq.c:730 [acpi_cpufreq]acpi_cpufreq_cpu_init =_ "AMD K8 systems must use native drivers.\012"
    drivers/cpufreq/acpi-cpufreq.c:716 [acpi_cpufreq]acpi_cpufreq_cpu_init =_ "No P-States\012"
    drivers/cpufreq/acpi-cpufreq.c:656 [acpi_cpufreq]acpi_cpufreq_cpu_init =_ "acpi_cpufreq_cpu_init\012"
    drivers/cpufreq/acpi-cpufreq.c:360 [acpi_cpufreq]get_cur_val =_ "get_cur_val = %u\012"
    drivers/cpufreq/acpi-cpufreq.c:470 [acpi_cpufreq]acpi_cpufreq_target =_ "acpi_cpufreq_target failed (%d)\012"
    drivers/cpufreq/acpi-cpufreq.c:431 [acpi_cpufreq]acpi_cpufreq_target =_ "Already at target state (P%d)\012"
    drivers/cpufreq/acpi-cpufreq.c:427 [acpi_cpufreq]acpi_cpufreq_target =_ "Called after resume, resetting to P%d\012"
    drivers/cpufreq/acpi-cpufreq.c:854 [acpi_cpufreq]acpi_cpufreq_cpu_exit =_ "acpi_cpufreq_cpu_exit\012"
    drivers/cpufreq/acpi-cpufreq.c:872 [acpi_cpufreq]acpi_cpufreq_resume =_ "acpi_cpufreq_resume\012"
    drivers/cpufreq/acpi-cpufreq.c:140 [acpi_cpufreq]_store_boost =_ "Core Boosting %sabled.\012"
    drivers/cpufreq/acpi-cpufreq.c:980 [acpi_cpufreq]acpi_cpufreq_exit =_ "acpi_cpufreq_exit\012"
    drivers/cpufreq/powernow-k8.c:631 [powernow_k8]fill_powernow_table =_ "currfid/vid do not match PST, ignoring\012"
    drivers/cpufreq/powernow-k8.c:621 [powernow_k8]fill_powernow_table =_ "cfid 0x%x, cvid 0x%x\012"
    drivers/cpufreq/powernow-k8.c:703 [powernow_k8]find_psb_table =_ "numpstates: 0x%x\012"
    drivers/cpufreq/powernow-k8.c:699 [powernow_k8]find_psb_table =_ "maxvid: 0x%x\012"
    drivers/cpufreq/powernow-k8.c:698 [powernow_k8]find_psb_table =_ "maxfid: 0x%x\012"
    drivers/cpufreq/powernow-k8.c:697 [powernow_k8]find_psb_table =_ "plllocktime: 0x%x (units 1us)\012"
    drivers/cpufreq/powernow-k8.c:682 [powernow_k8]find_psb_table =_ "numpst: 0x%x\012"
    drivers/cpufreq/powernow-k8.c:680 [powernow_k8]find_psb_table =_ "maximum voltage step: %d - 0x%x\012"
    drivers/cpufreq/powernow-k8.c:679 [powernow_k8]find_psb_table =_ "isochronous relief time: %d\012"
    drivers/cpufreq/powernow-k8.c:678 [powernow_k8]find_psb_table =_ "ramp voltage offset: %d\012"
    drivers/cpufreq/powernow-k8.c:671 [powernow_k8]find_psb_table =_ "flags2: 0x%x\012"
    drivers/cpufreq/powernow-k8.c:669 [powernow_k8]find_psb_table =_ "voltage stabilization time: %d(*20us)\012"
    drivers/cpufreq/powernow-k8.c:661 [powernow_k8]find_psb_table =_ "flags: 0x%x\012"
    drivers/cpufreq/powernow-k8.c:655 [powernow_k8]find_psb_table =_ "table vers: 0x%x\012"
    drivers/cpufreq/powernow-k8.c:653 [powernow_k8]find_psb_table =_ "found PSB header at 0x%p\012"
    drivers/cpufreq/powernow-k8.c:853 [powernow_k8]fill_powernow_table_fidvid =_ "invalid vid %u, ignoring\012"
    drivers/cpufreq/powernow-k8.c:845 [powernow_k8]fill_powernow_table_fidvid =_ "invalid freq %u kHz, ignoring\012"
    drivers/cpufreq/powernow-k8.c:835 [powernow_k8]fill_powernow_table_fidvid =_ "   %d : fid 0x%x, vid 0x%x\012"
    drivers/cpufreq/powernow-k8.c:771 [powernow_k8]powernow_k8_cpu_init_acpi =_ "powernow_table memory alloc failure\012"
    drivers/cpufreq/powernow-k8.c:763 [powernow_k8]powernow_k8_cpu_init_acpi =_ "Invalid control/status registers (%llx - %llx)\012"
    drivers/cpufreq/powernow-k8.c:753 [powernow_k8]powernow_k8_cpu_init_acpi =_ "No ACPI P-States\012"
    drivers/cpufreq/powernow-k8.c:747 [powernow_k8]powernow_k8_cpu_init_acpi =_ "register performance failed: bad ACPI data\012"
    drivers/cpufreq/powernow-k8.c:153 [powernow_k8]fidvid_msr_init =_ "cpu%d, init lo 0x%x, hi 0x%x\012"
    drivers/cpufreq/powernow-k8.c:1106 [powernow_k8]powernowk8_cpu_init =_ "cpu_init done, current fid 0x%x, vid 0x%x\012"
    drivers/cpufreq/powernow-k8.c:460 [powernow_k8]core_voltage_post_transition =_ "ph3 complete, currfid 0x%x, currvid 0x%x\012"
    drivers/cpufreq/powernow-k8.c:455 [powernow_k8]core_voltage_post_transition =_ "ph3 failed, currfid changed 0x%x\012"
    drivers/cpufreq/powernow-k8.c:449 [powernow_k8]core_voltage_post_transition =_ "ph3 failed, currvid 0x%x\012"
    drivers/cpufreq/powernow-k8.c:426 [powernow_k8]core_voltage_post_transition =_ "ph3 (cpu%d): starting, currfid 0x%x, currvid 0x%x\012"
    drivers/cpufreq/powernow-k8.c:174 [powernow_k8]write_new_fid =_ "writing fid 0x%x, lo 0x%x, hi 0x%x\012"
    drivers/cpufreq/powernow-k8.c:412 [powernow_k8]core_frequency_transition =_ "ph2 complete, currfid 0x%x, currvid 0x%x\012"
    drivers/cpufreq/powernow-k8.c:359 [powernow_k8]core_frequency_transition =_ "ph2 (cpu%d): starting, currfid 0x%x, currvid 0x%x, reqfid 0x%x\012"
    drivers/cpufreq/powernow-k8.c:218 [powernow_k8]write_new_vid =_ "writing vid 0x%x, lo 0x%x, hi 0x%x\012"
    drivers/cpufreq/powernow-k8.c:341 [powernow_k8]core_voltage_pre_transition =_ "ph1 complete, currfid 0x%x, currvid 0x%x\012"
    drivers/cpufreq/powernow-k8.c:325 [powernow_k8]core_voltage_pre_transition =_ "ph1: changing vid for rvo, req 0x%x\012"
    drivers/cpufreq/powernow-k8.c:314 [powernow_k8]core_voltage_pre_transition =_ "ph1: curr 0x%x, req vid 0x%x\012"
    drivers/cpufreq/powernow-k8.c:308 [powernow_k8]core_voltage_pre_transition =_ "ph1 maxvid=0x%x\012"
    drivers/cpufreq/powernow-k8.c:301 [powernow_k8]core_voltage_pre_transition =_ "ph1 (cpu%d): start, currfid 0x%x, currvid 0x%x, reqvid 0x%x, rvo 0x%x\012"
    drivers/cpufreq/powernow-k8.c:286 [powernow_k8]transition_fid_vid =_ "transitioned (cpu%d): new fid 0x%x, vid 0x%x\012"
    drivers/cpufreq/powernow-k8.c:928 [powernow_k8]transition_frequency_fidvid =_ "cpu %d, changing to fid 0x%x, vid 0x%x\012"
    drivers/cpufreq/powernow-k8.c:923 [powernow_k8]transition_frequency_fidvid =_ "target matches current values (fid 0x%x, vid 0x%x)\012"
    drivers/cpufreq/powernow-k8.c:916 [powernow_k8]transition_frequency_fidvid =_ "table matched fid 0x%x, giving vid 0x%x\012"
    drivers/cpufreq/powernow-k8.c:906 [powernow_k8]transition_frequency_fidvid =_ "cpu %d transition to index %u\012"
    drivers/cpufreq/powernow-k8.c:976 [powernow_k8]powernowk8_target_fn =_ "targ: curr fid 0x%x, vid 0x%x\012"
    drivers/cpufreq/powernow-k8.c:970 [powernow_k8]powernowk8_target_fn =_ "targ: cpu %d, %d kHz, min %d, max %d\012"
    drivers/cpufreq/powernow-k8.c:116 [powernow_k8]query_current_values_with_pending_wait =_ "detected change pending stuck\012"
    drivers/cpufreq/powernow-k8.c:1238 [powernow_k8]powernowk8_exit =_ "exit\012"
    drivers/cpufreq/pcc-cpufreq.c:516 [pcc_cpufreq]pcc_cpufreq_probe =_ "probe: doorbell_preserve: 0x%llx, doorbell_write: 0x%llx\012"
    drivers/cpufreq/pcc-cpufreq.c:496 [pcc_cpufreq]pcc_cpufreq_probe =_ "probe: doorbell: space_id is %d, bit_width is %d, bit_offset is %d, access_width is %d, address is 0x%llx\012"
    drivers/cpufreq/pcc-cpufreq.c:477 [pcc_cpufreq]pcc_cpufreq_probe =_ "probe: min time between commands: %d us, max time between commands: %d us, nominal CPU frequency: %d MHz, minimum CPU frequency: %d MHz, minimum CPU frequency without throttling: %d MHz\012"
    drivers/cpufreq/pcc-cpufreq.c:466 [pcc_cpufreq]pcc_cpufreq_probe =_ "probe: PCCH header is at physical address: 0x%llx, signature: 0x%x, length: %d bytes, major: %d, minor: %d, supported features: 0x%x, command field: 0x%x, status field: 0x%x, nominal latency: %d us\012"
    drivers/cpufreq/pcc-cpufreq.c:457 [pcc_cpufreq]pcc_cpufreq_probe =_ "probe: PCCH header (virtual) addr: 0x%p\012"
    drivers/cpufreq/pcc-cpufreq.c:451 [pcc_cpufreq]pcc_cpufreq_probe =_ "probe: could not map shared mem region\012"
    drivers/cpufreq/pcc-cpufreq.c:441 [pcc_cpufreq]pcc_cpufreq_probe =_ "probe: mem_resource descriptor: 0x%x, length: %d, space_id: %d, resource_usage: %d, type_specific: %d, granularity: 0x%llx, minimum: 0x%llx, maximum: 0x%llx, translation_offset: 0x%llx, address_length: 0x%llx\012"
    drivers/cpufreq/pcc-cpufreq.c:408 [pcc_cpufreq]pcc_cpufreq_probe =_ "probe: _OSC evaluation did not succeed\012"
    drivers/cpufreq/pcc-cpufreq.c:588 [pcc_cpufreq]pcc_cpufreq_init =_ "pcc_cpufreq_init: PCCH evaluation failed\012"
    drivers/cpufreq/pcc-cpufreq.c:294 [pcc_cpufreq]pcc_get_offset =_ "pcc_get_offset: for CPU %d: pcc_cpu_data input_offset: 0x%x, pcc_cpu_data output_offset: 0x%x\012"
    drivers/cpufreq/pcc-cpufreq.c:559 [pcc_cpufreq]pcc_cpufreq_cpu_init =_ "init: policy->max is %d, policy->min is %d\012"
    drivers/cpufreq/pcc-cpufreq.c:549 [pcc_cpufreq]pcc_cpufreq_cpu_init =_ "init: PCCP evaluation failed\012"
    drivers/cpufreq/pcc-cpufreq.c:243 [pcc_cpufreq]pcc_cpufreq_target =_ "target: was SUCCESSFUL for cpu %d\012"
    drivers/cpufreq/pcc-cpufreq.c:239 [pcc_cpufreq]pcc_cpufreq_target =_ "target: FAILED for cpu %d, with status: 0x%x\012"
    drivers/cpufreq/pcc-cpufreq.c:213 [pcc_cpufreq]pcc_cpufreq_target =_ "target: CPU %d should go to target freq: %d (virtual) input_offset is 0x%p\012"
    drivers/cpufreq/pcc-cpufreq.c:185 [pcc_cpufreq]pcc_get_freq =_ "get: frequency for cpu %d is being temporarily capped at %d\012"
    drivers/cpufreq/pcc-cpufreq.c:180 [pcc_cpufreq]pcc_get_freq =_ "get: SUCCESS: (virtual) output_offset for cpu %d is 0x%p, contains a value of: 0x%x. Speed is: %d MHz\012"
    drivers/cpufreq/pcc-cpufreq.c:170 [pcc_cpufreq]pcc_get_freq =_ "get: FAILED: for CPU %d, status is %d\012"
    drivers/cpufreq/pcc-cpufreq.c:151 [pcc_cpufreq]pcc_get_freq =_ "get: get_freq for CPU %d\012"
    drivers/cpufreq/speedstep-centrino.c:370 [speedstep_centrino]centrino_cpu_init =_ "found unsupported CPU with Enhanced SpeedStep: send /proc/cpuinfo to linux-pm@vger.kernel.org\012"
    drivers/cpufreq/speedstep-centrino.c:468 [speedstep_centrino]centrino_target =_ "no change needed - msr was and needs to be %x\012"
    drivers/cpufreq/speedstep-centrino.c:453 [speedstep_centrino]centrino_target =_ "couldn't limit to CPUs in this domain\012"
    drivers/cpufreq/intel_pstate.c:868 [intel_pstate]intel_pstate_init_cpu =_ "Intel pstate controlling: cpu %d\012"
    drivers/mmc/core/core.c:2373 [mmc_core]_mmc_detect_card_removed =_ "%s: card remove detected\012"
    drivers/mmc/core/core.c:2368 [mmc_core]_mmc_detect_card_removed =_ "%s: card removed too slowly\012"
    drivers/mmc/core/core.c:2206 [mmc_core]mmc_calc_max_discard =_ "%s: calculated max. discard sectors %u for timeout %u ms\012"
    drivers/mmc/core/core.c:1569 [mmc_core]mmc_power_up =_ "Initial signal voltage of 1.2v\012"
    drivers/mmc/core/core.c:1567 [mmc_core]mmc_power_up =_ "Initial signal voltage of 1.8v\012"
    drivers/mmc/core/core.c:1565 [mmc_core]mmc_power_up =_ "Initial signal voltage of 3.3v\012"
    drivers/mmc/core/core.c:1508 [mmc_core]mmc_set_signal_voltage =_ "%s: Signal voltage switch failed, power cycling card\012"
    drivers/mmc/core/core.c:985 [mmc_core]mmc_set_ios =_ "%s: clock %uHz busmode %u powermode %u cs %u Vdd %u width %u timing %u\012"
    drivers/mmc/core/core.c:646 [mmc_core]mmc_interrupt_hpi =_ "%s: HPI cannot be sent. Card state=%d\012"
    drivers/mmc/core/core.c:462 [mmc_core]mmc_wait_for_req_done =_ "%s: req failed (CMD%u): %d, retrying...\012"
    drivers/mmc/core/core.c:218 [mmc_core]mmc_start_request =_ "%s:     CMD%u arg %08x flags %08x\012"
    drivers/mmc/core/core.c:212 [mmc_core]mmc_start_request =_ "%s:     blksz %d blocks %d flags %08x tsac %d ms nsac %d\012"
    drivers/mmc/core/core.c:204 [mmc_core]mmc_start_request =_ "%s: starting CMD%u arg %08x flags %08x\012"
    drivers/mmc/core/core.c:199 [mmc_core]mmc_start_request =_ "<%s: starting CMD%u arg %08x flags %08x>\012"
    drivers/mmc/core/core.c:176 [mmc_core]mmc_request_done =_ "%s:     (CMD%u): %d: %08x %08x %08x %08x\012"
    drivers/mmc/core/core.c:168 [mmc_core]mmc_request_done =_ "%s:     %d bytes transferred: %d\012"
    drivers/mmc/core/core.c:163 [mmc_core]mmc_request_done =_ "%s: req done (CMD%u): %d: %08x %08x %08x %08x\012"
    drivers/mmc/core/core.c:157 [mmc_core]mmc_request_done =_ "%s: req done <CMD%u>: %d: %08x %08x %08x %08x\012"
    drivers/mmc/core/host.c:325 [mmc_core]mmc_of_parse =_ "\042bus-width\042 property is missing, assuming 1 bit.\012"
    drivers/mmc/core/sdio_io.c:135 [mmc_core]sdio_disable_func =_ "SDIO: Failed to disable device %s\012"
    drivers/mmc/core/sdio_io.c:130 [mmc_core]sdio_disable_func =_ "SDIO: Disabled device %s\012"
    drivers/mmc/core/sdio_io.c:118 [mmc_core]sdio_disable_func =_ "SDIO: Disabling device %s...\012"
    drivers/mmc/core/sdio_io.c:98 [mmc_core]sdio_enable_func =_ "SDIO: Failed to enable device %s\012"
    drivers/mmc/core/sdio_io.c:93 [mmc_core]sdio_enable_func =_ "SDIO: Enabled device %s\012"
    drivers/mmc/core/sdio_io.c:68 [mmc_core]sdio_enable_func =_ "SDIO: Enabling device %s...\012"
    drivers/mmc/core/sdio_irq.c:320 [mmc_core]sdio_release_irq =_ "SDIO: Disabling IRQ for %s...\012"
    drivers/mmc/core/sdio_irq.c:188 [mmc_core]sdio_irq_thread =_ "%s: IRQ thread exiting with code %d\012"
    drivers/mmc/core/sdio_irq.c:121 [mmc_core]sdio_irq_thread =_ "%s: IRQ thread started (poll period = %lu jiffies)\012"
    drivers/mmc/core/sdio_irq.c:280 [mmc_core]sdio_claim_irq =_ "SDIO: IRQ for %s already in use.\012"
    drivers/mmc/core/sdio_irq.c:277 [mmc_core]sdio_claim_irq =_ "SDIO: Enabling IRQ for %s...\012"
    drivers/mmc/core/sdio_irq.c:52 [mmc_core]process_sdio_pending_irqs =_ "%s: error %d reading SDIO_CCCR_INTx\012"
    drivers/mmc/core/quirks.c:94 [mmc_core]mmc_fixup_device =_ "calling %pf\012"
    drivers/leds/led-core.c:139 [led_core]led_set_brightness =_ "Setting LED brightness failed (%d)\012"
    drivers/leds/led-class.c:251 [led_class]led_classdev_register =_ "Registered led device: %s\012"
    drivers/firmware/dmi_scan.c:491 [dmi_scan]dmi_present =_ "SMBIOS version fixup(2.%d->2.%d)\012"
    drivers/firmware/dmi_scan.c:487 [dmi_scan]dmi_present =_ "SMBIOS version fixup(2.%d->2.%d)\012"
    drivers/firmware/dmi_scan.c:544 [dmi_scan]dmi_smbios3_present =_ "DMI: %s\012"
    drivers/clk/clk.c:1822 [clk]__clk_init =_ "%s: clk %s already initialized\012"
    drivers/clk/clk.c:1304 [clk]__clk_speculate_rates =_ "%s: clk notifier callback for clock %s aborted with error %d\012"
    drivers/clk/clk.c:1698 [clk]clk_set_parent =_ "%s: clk %s can not be parent of clk %s\012"
    drivers/clk/clk.c:1393 [clk]clk_calc_new_rates =_ "%s: clk %s can not be parent of clk %s\012"
    drivers/clk/clk.c:1384 [clk]clk_calc_new_rates =_ "%s: %s not gated but wants to reparent\012"
    drivers/clk/clk.c:1557 [clk]clk_set_rate =_ "%s: failed to set %s rate\012"
    drivers/mailbox/mailbox.c:316 [mailbox]mbox_request_channel =_ "%s: can't parse \042mboxes\042 property\012"
    drivers/mailbox/mailbox.c:308 [mailbox]mbox_request_channel =_ "%s: No owner device node\012"
    arch/x86/pci/i386.c:297 [i386]pcibios_allocate_dev_resources =_ "disabling ROM %pR\012"
    arch/x86/pci/i386.c:276 [i386]pcibios_allocate_dev_resources =_ "BAR %d: reserving %pr (d=%d, p=%d)\012"
    arch/x86/pci/xen.c:259 [xen]xen_hvm_setup_msi_irqs =_ "xen: msi --> pirq=%d --> irq=%d\012"
    arch/x86/pci/xen.c:249 [xen]xen_hvm_setup_msi_irqs =_ "xen: msi already bound to pirq=%d\012"
    arch/x86/pci/xen.c:246 [xen]xen_hvm_setup_msi_irqs =_ "xen: msi bound to pirq=%d\012"
    arch/x86/pci/fixup.c:84 [fixup]pci_fixup_latency =_ "Setting max latency to 32\012"
    arch/x86/pci/fixup.c:27 [fixup]pci_fixup_i450nx =_ "i450NX PXB %d: %02x/%02x/%02x\012"
    arch/x86/pci/irq.c:1036 [irq]pcibios_fixup_irqs =_ "ignoring bogus IRQ %d\012"
    arch/x86/pci/irq.c:983 [irq]pcibios_lookup_irq =_ "can't route interrupt\012"
    arch/x86/pci/irq.c:959 [irq]pcibios_lookup_irq =_ "PCI INT %c -> newirq %d"
    arch/x86/pci/irq.c:917 [irq]pcibios_lookup_irq =_ "PCI INT %c -> PIRQ %02x, mask %04x, excl %04x"
    arch/x86/pci/irq.c:913 [irq]pcibios_lookup_irq =_ "PCI INT %c not routed\012"
    arch/x86/pci/irq.c:907 [irq]pcibios_lookup_irq =_ "PCI INT %c not found in routing table\012"
    arch/x86/pci/irq.c:892 [irq]pcibios_lookup_irq =_ "no interrupt pin\012"
    net/core/sock.c:1439 [sock]__sk_free =_ "%s: optmem leakage (%d bytes) detected\012"
    net/core/dev.c:5901 [dev]rollback_registered_many =_ "unregister_netdevice: device %s/%p never was registered\012"
    net/core/dev.c:6032 [dev]netdev_fix_features =_ "Dropping NETIF_F_UFO since no NETIF_F_SG feature.\012"
    net/core/dev.c:6026 [dev]netdev_fix_features =_ "Dropping NETIF_F_UFO since no checksum offload features.\012"
    net/core/dev.c:6015 [dev]netdev_fix_features =_ "Dropping NETIF_F_GSO since no SG feature.\012"
    net/core/dev.c:6005 [dev]netdev_fix_features =_ "Dropping TSO6 features since no CSUM feature.\012"
    net/core/dev.c:5998 [dev]netdev_fix_features =_ "Dropping TSO features since no CSUM feature.\012"
    net/core/dev.c:5992 [dev]netdev_fix_features =_ "Dropping TSO features since no SG feature.\012"
    net/core/dev.c:6066 [dev]__netdev_update_features =_ "Features changed: %pNF -> %pNF\012"
    net/core/dev.c:5034 [dev]__netdev_adjacent_dev_remove =_ "dev_put for %s, because link removed from %s to %s\012"
    net/core/dev.c:5021 [dev]__netdev_adjacent_dev_remove =_ "%s to %s ref_nr-- = %d\012"
    net/core/dev.c:4973 [dev]__netdev_adjacent_dev_insert =_ "dev_hold for %s, because of link added from %s to %s\012"
    net/core/dev.c:5172 [dev]__netdev_upper_dev_link =_ "linking %s's lower device %s with %s\012"
    net/core/dev.c:5163 [dev]__netdev_upper_dev_link =_ "linking %s's upper device %s with %s\012"
    net/core/dev.c:5153 [dev]__netdev_upper_dev_link =_ "Interlinking %s with %s, non-neighbour\012"
    net/core/neighbour.c:1336 [neighbour]neigh_resolve_output =_ "%s: dst=%p neigh=%p\012"
    net/ethernet/eth.c:138 [eth]eth_rebuild_header =_ "%s: unable to resolve type %X addresses.\012"
    net/sched/sch_api.c:378 [sch_api]__detect_linklayer =_ "TC linklayer: Detected ATM, low(%d)=high(%d)=%u\012"
    net/sched/sch_api.c:371 [sch_api]__detect_linklayer =_ "TC linklayer: Giving up ATM detection\012"
    net/sched/act_api.c:697 [act_api]create_a =_ "create_a: failed to alloc!\012"
    net/sched/act_api.c:773 [act_api]tca_action_flush =_ "tca_action_flush: failed skb alloc\012"
    net/ipv4/route.c:1155 [route]ip_rt_bug =_ "%s: %pI4 -> %pI4, %s\012"
    net/ipv4/ip_fragment.c:621 [ip_fragment]ip_frag_reasm =_ "queue_glue: no memory for gluing queue %p\012"
    net/ipv4/ip_output.c:209 [ip_output]ip_finish_output2 =_ "%s: No header cache and no neighbour!\012"
    net/ipv4/tcp.c:1788 [tcp]tcp_recvmsg =_ "TCP(%s:%d): Application bug, race in MSG_PEEK\012"
    net/ipv4/tcp_input.c:5862 [tcp_input]pr_drop_req =_ "drop open request from %pI6/%u\012"
    net/ipv4/tcp_input.c:5858 [tcp_input]pr_drop_req =_ "drop open request from %pI4/%u\012"
    net/ipv4/tcp_input.c:3217 [tcp_input]tcp_clean_rtx_queue =_ "Leak r=%u %d\012"
    net/ipv4/tcp_input.c:3212 [tcp_input]tcp_clean_rtx_queue =_ "Leak s=%u %d\012"
    net/ipv4/tcp_input.c:3207 [tcp_input]tcp_clean_rtx_queue =_ "Leak l=%u %d\012"
    include/net/inet_connection_sock.h:241 [tcp_input]inet_csk_reset_xmit_timer =_ "%s"
    include/net/inet_connection_sock.h:224 [tcp_input]inet_csk_reset_xmit_timer =_ "reset_xmit_timer: sk=%p %d when=0x%lx, caller=%p\012"
    net/ipv4/tcp_output.c:2856 [tcp_output]tcp_send_synack =_ "%s: wrong queue state\012"
    net/ipv4/tcp_output.c:2598 [tcp_output]tcp_retransmit_skb =_ "retrans_out leaked\012"
    include/net/inet_connection_sock.h:241 [tcp_output]inet_csk_reset_xmit_timer =_ "%s"
    include/net/inet_connection_sock.h:224 [tcp_output]inet_csk_reset_xmit_timer =_ "reset_xmit_timer: sk=%p %d when=0x%lx, caller=%p\012"
    include/net/inet_connection_sock.h:224 [tcp_timer]inet_csk_reset_xmit_timer =_ "reset_xmit_timer: sk=%p %d when=0x%lx, caller=%p\012"
    net/ipv4/tcp_timer.c:389 [tcp_timer]tcp_retransmit_timer =_ "Peer %pI6:%u/%u unexpectedly shrunk window %u:%u (repaired)\012"
    net/ipv4/tcp_timer.c:381 [tcp_timer]tcp_retransmit_timer =_ "Peer %pI4:%u/%u unexpectedly shrunk window %u:%u (repaired)\012"
    include/net/inet_connection_sock.h:224 [tcp_ipv4]inet_csk_reset_xmit_timer =_ "reset_xmit_timer: sk=%p %d when=0x%lx, caller=%p\012"
    include/net/udplite.h:58 [udp]udplite_checksum_init =_ "UDPLite: bad csum coverage %d/%d\012"
    include/net/udplite.h:45 [udp]udplite_checksum_init =_ "UDPLite: zeroed checksum field\012"
    net/ipv4/udp.c:1857 [udp]__udp4_lib_rcv =_ "UDP%s: bad checksum. From %pI4:%u to %pI4:%u ulen %d\012"
    net/ipv4/udp.c:1846 [udp]__udp4_lib_rcv =_ "UDP%s: short packet: From %pI4:%u %d/%d to %pI4:%u\012"
    net/ipv4/udp.c:1573 [udp]udp_queue_rcv_skb =_ "UDPLite: coverage %d too small, need min %d\012"
    net/ipv4/udp.c:1562 [udp]udp_queue_rcv_skb =_ "UDPLite: partial coverage %d while full coverage %d requested\012"
    net/ipv4/udp.c:1150 [udp]udp_sendpage =_ "udp cork app bug 3\012"
    net/ipv4/udp.c:1068 [udp]udp_sendmsg =_ "cork app bug 2\012"
    net/ipv4/arp.c:452 [arp]arp_set_predefined =_ "arp called for own IP address\012"
    net/ipv4/arp.c:473 [arp]arp_find =_ "arp_find is called with dst==NULL\012"
    net/ipv4/arp.c:367 [arp]arp_solicit =_ "trying to ucast probe in NUD_INVALID\012"
    net/ipv4/icmp.c:802 [icmp]icmp_unreach =_ "%pI4: Source Route Failed\012"
    net/ipv4/icmp.c:788 [icmp]icmp_unreach =_ "%pI4: fragmentation needed and DF set\012"
    net/ipv4/devinet.c:1374 [devinet]inetdev_event =_ "%s: bug\012"
    net/ipv4/fib_trie.c:2002 [fib_trie]fib_trie_get_next =_ "get_next iter={node=%p index=%d depth=%d}\012"
    net/ipv4/fib_trie.c:1827 [fib_trie]fib_table_flush =_ "trie_flush found=%d\012"
    net/ipv4/fib_trie.c:1599 [fib_trie]trie_leaf_remove =_ "entering trie_leaf_remove(%p)\012"
    net/ipv4/fib_trie.c:1651 [fib_trie]fib_table_delete =_ "Deleting %08x/%d tos=%d t=%p\012"
    net/ipv4/fib_trie.c:839 [fib_trie]halve =_ "In halve\012"
    net/ipv4/fib_trie.c:708 [fib_trie]inflate =_ "In inflate\012"
    net/ipv4/fib_trie.c:536 [fib_trie]resize =_ "In tnode_resize %p inflate_threshold=%d threshold=%d\012"
    net/ipv4/fib_trie.c:465 [fib_trie]tnode_new =_ "AT %p s=%zu %zu\012"
    net/ipv4/fib_trie.c:1182 [fib_trie]fib_table_insert =_ "Insert table=%u %08x/%d\012"
    net/ipv4/inet_fragment.c:461 [inet_fragment]inet_frag_maybe_warn_overflow =_ "%s%s"
    net/ipv4/ping.c:712 [ping]ping_v4_sendmsg =_ "ping_v4_sendmsg(sk=%p,sk->num=%u)\012"
    net/ipv4/ping.c:986 [ping]ping_rcv =_ "no socket, dropping\012"
    net/ipv4/ping.c:980 [ping]ping_rcv =_ "rcv on socket %p\012"
    net/ipv4/ping.c:971 [ping]ping_rcv =_ "ping_rcv(skb=%p,id=%04x,seq=%04x)\012"
    net/ipv4/ping.c:950 [ping]ping_queue_rcv_skb =_ "ping_queue_rcv_skb -> failed\012"
    net/ipv4/ping.c:947 [ping]ping_queue_rcv_skb =_ "ping_queue_rcv_skb(sk=%p,sk->num=%d,skb=%p)\012"
    net/ipv4/ping.c:939 [ping]ping_recvmsg =_ "ping_recvmsg -> %d\012"
    net/ipv4/ping.c:862 [ping]ping_recvmsg =_ "ping_recvmsg(sk=%p,sk->num=%u)\012"
    net/ipv4/ping.c:214 [ping]ping_lookup =_ "found: %p: num=%d, daddr=%pI6c, dif=%d\012"
    net/ipv4/ping.c:202 [ping]ping_lookup =_ "found: %p: num=%d, daddr=%pI4, dif=%d\012"
    net/ipv4/ping.c:194 [ping]ping_lookup =_ "iterate\012"
    net/ipv4/ping.c:185 [ping]ping_lookup =_ "try to find: num = %d, daddr = %pI6c, dif = %d\012"
    net/ipv4/ping.c:181 [ping]ping_lookup =_ "try to find: num = %d, daddr = %pI4, dif = %d\012"
    net/ipv4/ping.c:524 [ping]ping_err =_ "err on socket %p\012"
    net/ipv4/ping.c:521 [ping]ping_err =_ "no socket, dropping\012"
    net/ipv4/ping.c:517 [ping]ping_err =_ "ping_err(proto=0x%x,type=%d,code=%d,id=%04x,seq=%04x)\012"
    net/ipv4/ping.c:345 [ping]ping_check_bind_addr =_ "ping_check_bind_addr(sk=%p,addr=%pI6c,port=%d)\012"
    net/ipv4/ping.c:318 [ping]ping_check_bind_addr =_ "ping_check_bind_addr(sk=%p,addr=%pI4,port=%d)\012"
    net/ipv4/ping.c:464 [ping]ping_bind =_ "ping_v4_bind -> %d\012"
    net/ipv4/ping.c:440 [ping]ping_bind =_ "after bind(): num = %d, dif = %d\012"
    net/ipv4/ping.c:295 [ping]ping_close =_ "isk->refcnt = %d\012"
    net/ipv4/ping.c:294 [ping]ping_close =_ "ping_close(sk=%p,sk->num=%u)\012"
    net/ipv4/ping.c:157 [ping]ping_unhash =_ "ping_unhash(isk=%p,isk->num=%u)\012"
    net/ipv4/ping.c:150 [ping]ping_hash =_ "ping_hash(sk->port=%u)\012"
    net/ipv4/ping.c:71 [ping]ping_hashfn =_ "hash(%d) = %d\012"
    net/ipv4/ping.c:134 [ping]ping_get_port =_ "was not hashed\012"
    net/ipv4/ping.c:131 [ping]ping_get_port =_ "found port/ident = %d\012"
    net/ipv4/sysctl_net_ipv4.c:245 [sysctl_net_ipv4]proc_tcp_fastopen_key =_ "proc FO key set 0x%x-%x-%x-%x <- 0x%s: %u\012"
    net/ipv6/addrconf.c:2696 [ipv6]init_loopback =_ "%s: add_dev failed\012"
    net/ipv6/addrconf.c:2845 [ipv6]addrconf_gre_config =_ "%s: add_dev failed\012"
    net/ipv6/addrconf.c:2820 [ipv6]addrconf_sit_config =_ "%s: add_dev failed\012"
    net/ipv6/addrconf.c:3184 [ipv6]addrconf_rs_timer =_ "%s: no IPv6 routers present\012"
    net/ipv6/addrconf.c:2285 [ipv6]addrconf_prefix_rcv =_ "IPv6 addrconf: prefix with wrong length %d\012"
    net/ipv6/addrconf.c:2202 [ipv6]addrconf_prefix_rcv =_ "addrconf: device %s not configured\012"
    net/ipv6/addrconf.c:1415 [ipv6]ipv6_dev_get_saddr =_ "ADDRCONF: unspecified / multicast address assigned as unicast address on %s"
    net/ipv6/route.c:1825 [ipv6]rt6_do_redirect =_ "rt6_redirect: source isn't a valid nexthop for redirect target\012"
    net/ipv6/route.c:1818 [ipv6]rt6_do_redirect =_ "rt6_redirect: invalid link-layer address length\012"
    net/ipv6/route.c:1809 [ipv6]rt6_do_redirect =_ "rt6_redirect: invalid ND options\012"
    net/ipv6/route.c:1793 [ipv6]rt6_do_redirect =_ "rt6_do_redirect: target address is not link-local unicast\012"
    net/ipv6/route.c:1784 [ipv6]rt6_do_redirect =_ "rt6_do_redirect: destination address is multicast\012"
    net/ipv6/route.c:1777 [ipv6]rt6_do_redirect =_ "rt6_do_redirect: packet too short\012"
    net/ipv6/ip6_fib.c:1582 [ipv6]fib6_clean_node =_ "%s: del failed: rt=%p@%p err=%d\012"
    net/ipv6/ndisc.c:665 [ipv6]ndisc_solicit =_ "%s: trying to ucast probe in NUD_INVALID: %pI6\012"
    net/ipv6/udp.c:1303 [ipv6]udpv6_sendmsg =_ "udp cork app bug 2\012"
    net/ipv6/udp.c:778 [ipv6]udp6_csum_zero_error =_ "IPv6: udp checksum is 0 for [%pI6c]:%u->[%pI6c]:%u\012"
    net/ipv6/udp.c:950 [ipv6]__udp6_lib_rcv =_ "UDP%sv6: short packet: From [%pI6c]:%u %d/%d to [%pI6c]:%u\012"
    net/ipv6/udp.c:681 [ipv6]udpv6_queue_rcv_skb =_ "UDPLITE6: coverage %d too small, need min %d\012"
    net/ipv6/udp.c:676 [ipv6]udpv6_queue_rcv_skb =_ "UDPLITE6: partial coverage %d while full coverage %d requested\012"
    net/ipv6/icmp.c:785 [ipv6]icmpv6_rcv =_ "icmpv6: msg of unknown type\012"
    net/ipv6/icmp.c:712 [ipv6]icmpv6_rcv =_ "ICMPv6 checksum failed [%pI6c > %pI6c]\012"
    net/ipv6/icmp.c:342 [ipv6]icmpv6_route_lookup =_ "icmp6_send: acast source\012"
    net/ipv6/icmp.c:464 [ipv6]icmp6_send =_ "icmp6_send: no reply to icmp error\012"
    net/ipv6/icmp.c:456 [ipv6]icmp6_send =_ "icmp6_send: addr_any/mcast source\012"
    net/ipv6/reassembly.c:511 [ipv6]ip6_frag_reasm =_ "ip6_frag_reasm: no memory for reassembly\012"
    net/ipv6/reassembly.c:508 [ipv6]ip6_frag_reasm =_ "ip6_frag_reasm: payload len = %d\012"
    net/ipv6/ping.c:96 [ipv6]ping_v6_sendmsg =_ "ping_v6_sendmsg(sk=%p,sk->num=%u)\012"
    net/ipv6/exthdrs.c:555 [ipv6]ipv6_hop_ra =_ "ipv6_hop_ra: wrong RA length %d\012"
    net/ipv6/exthdrs.c:570 [ipv6]ipv6_hop_jumbo =_ "ipv6_hop_jumbo: wrong jumbo opt length/alignment %d\012"
    net/ipv6/exthdrs.c:203 [ipv6]ipv6_dest_hao =_ "hao is not an unicast addr: %pI6\012"
    net/ipv6/exthdrs.c:197 [ipv6]ipv6_dest_hao =_ "hao invalid option length = %d\012"
    net/ipv6/exthdrs.c:187 [ipv6]ipv6_dest_hao =_ "hao duplicated\012"
    net/ipv6/datagram.c:910 [ipv6]ip6_datagram_send_ctl =_ "invalid cmsg type: %d\012"
    net/ipv6/netfilter.c:39 [ipv6]ip6_route_me_harder =_ "ip6_route_me_harder: No more route\012"
    include/net/udplite.h:58 [ip6_checksum]udplite_checksum_init =_ "UDPLite: bad csum coverage %d/%d\012"
    include/net/udplite.h:45 [ip6_checksum]udplite_checksum_init =_ "UDPLite: zeroed checksum field\012"
    drivers/net/ethernet/intel/e1000/e1000_main.c:4419 [e1000]e1000_clean_rx_irq =_ "Receive packet consumed multiple buffers\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:4835 [e1000]e1000_update_adaptive =_ "Not in Adaptive IFS mode!\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:4797 [e1000]e1000_reset_adaptive =_ "Not in Adaptive IFS mode!\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:4268 [e1000]e1000_read_mac_addr =_ "EEPROM Read Error\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:4229 [e1000]e1000_write_eeprom_microwire =_ "EEPROM Write did not complete\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:4086 [e1000]e1000_do_write_eeprom =_ "\042words\042 parameter out of bounds\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:4040 [e1000]e1000_update_eeprom_checksum =_ "EEPROM Write Error\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:4033 [e1000]e1000_update_eeprom_checksum =_ "EEPROM Read Error\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:4014 [e1000]e1000_validate_eeprom_checksum =_ "EEPROM Checksum Invalid\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:3999 [e1000]e1000_validate_eeprom_checksum =_ "EEPROM Read Error\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:3868 [e1000]e1000_spi_eeprom_ready =_ "SPI EEPROM Status error\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:3715 [e1000]e1000_acquire_eeprom =_ "Could not acquire EEPROM grant\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:3913 [e1000]e1000_do_read_eeprom =_ "\042words\042 parameter out of bounds. Words = %d,size = %d\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:3461 [e1000]e1000_validate_mdi_setting =_ "Invalid MDI setting detected\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:3445 [e1000]e1000_phy_get_info =_ "PHY info is only valid if link is up\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:3432 [e1000]e1000_phy_get_info =_ "PHY info is only valid for copper media\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:3075 [e1000]e1000_phy_hw_reset =_ "Resetting Phy...\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2906 [e1000]e1000_read_phy_reg_ex =_ "MDI Error\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2902 [e1000]e1000_read_phy_reg_ex =_ "MDI Read did not complete\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2881 [e1000]e1000_read_phy_reg_ex =_ "MDI Read Error\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2875 [e1000]e1000_read_phy_reg_ex =_ "MDI Read did not complete\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:3035 [e1000]e1000_write_phy_reg_ex =_ "MDI Write did not complete\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:3014 [e1000]e1000_write_phy_reg_ex =_ "MDI Write did not complete\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2985 [e1000]e1000_write_phy_reg_ex =_ "PHY Address %d is out of range\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2610 [e1000]e1000_get_speed_and_duplex =_ "1000 Mbs, Full Duplex\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2607 [e1000]e1000_get_speed_and_duplex =_ " Half Duplex\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2604 [e1000]e1000_get_speed_and_duplex =_ "Full Duplex\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2599 [e1000]e1000_get_speed_and_duplex =_ "10 Mbs, "
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2596 [e1000]e1000_get_speed_and_duplex =_ "100 Mbs, "
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2593 [e1000]e1000_get_speed_and_duplex =_ "1000 Mbs, "
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2382 [e1000]e1000_check_for_serdes_link_generic =_ "SERDES: Link down - autoneg failed\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2378 [e1000]e1000_check_for_serdes_link_generic =_ "SERDES: Link down - no sync.\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2374 [e1000]e1000_check_for_serdes_link_generic =_ "SERDES: Link down - invalidcodewords detected in autoneg.\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2370 [e1000]e1000_check_for_serdes_link_generic =_ "SERDES: Link up - autoneg completed successfully.\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2356 [e1000]e1000_check_for_serdes_link_generic =_ "SERDES: Link down - force failed.\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2352 [e1000]e1000_check_for_serdes_link_generic =_ "SERDES: Link up - forced.\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2336 [e1000]e1000_check_for_serdes_link_generic =_ "RXing /C/, enable AutoNeg and stop forcing link.\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2327 [e1000]e1000_check_for_serdes_link_generic =_ "Error configuring flow control\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2314 [e1000]e1000_check_for_serdes_link_generic =_ "NOT RXing /C/, disable AutoNeg and force link.\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2535 [e1000]e1000_check_for_link =_ "Error getting link speed and duplex\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2517 [e1000]e1000_check_for_link =_ "Error configuring flow control\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2505 [e1000]e1000_check_for_link =_ "Error configuring MAC to PHY settings\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2051 [e1000]e1000_force_mac_fc =_ "Flow control param set incorrectly\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1649 [e1000]e1000_phy_setup_autoneg =_ "Auto-Neg Advertising %x\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1641 [e1000]e1000_phy_setup_autoneg =_ "Flow control param set incorrectly\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1587 [e1000]e1000_phy_setup_autoneg =_ "Advertise 1000mb Full duplex\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1582 [e1000]e1000_phy_setup_autoneg =_ "Advertise 1000mb Half duplex requested, request denied!\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1575 [e1000]e1000_phy_setup_autoneg =_ "Advertise 100mb Full duplex\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1569 [e1000]e1000_phy_setup_autoneg =_ "Advertise 100mb Half duplex\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1563 [e1000]e1000_phy_setup_autoneg =_ "Advertise 10mb Full duplex\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1557 [e1000]e1000_phy_setup_autoneg =_ "Advertise 10mb Half duplex\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1553 [e1000]e1000_phy_setup_autoneg =_ "autoneg_advertised %x\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:957 [e1000]e1000_setup_fiber_serdes_link =_ "No Signal Detected\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:954 [e1000]e1000_setup_fiber_serdes_link =_ "Valid Link Found\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:948 [e1000]e1000_setup_fiber_serdes_link =_ "Error while checking for link\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:939 [e1000]e1000_setup_fiber_serdes_link =_ "Never got a valid link from auto-neg!!!\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:931 [e1000]e1000_setup_fiber_serdes_link =_ "Looking for Link\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:913 [e1000]e1000_setup_fiber_serdes_link =_ "Auto-negotiation enabled\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:903 [e1000]e1000_setup_fiber_serdes_link =_ "Flow control param set incorrectly\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:5225 [e1000]e1000_config_dsp_after_link_change =_ "Error getting link speed and duplex\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2278 [e1000]e1000_config_fc_after_link_up =_ "Copper PHY and Auto Neg has not completed.\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2273 [e1000]e1000_config_fc_after_link_up =_ "Error forcing flow control settings\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2260 [e1000]e1000_config_fc_after_link_up =_ "Error getting link speed and duplex\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2249 [e1000]e1000_config_fc_after_link_up =_ "Flow Control = RX PAUSE frames only.\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2245 [e1000]e1000_config_fc_after_link_up =_ "Flow Control = NONE.\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2217 [e1000]e1000_config_fc_after_link_up =_ "Flow Control = RX PAUSE frames only.\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2200 [e1000]e1000_config_fc_after_link_up =_ "Flow Control = TX PAUSE frames only.\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2182 [e1000]e1000_config_fc_after_link_up =_ "Flow Control = RX PAUSE frames only.\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2178 [e1000]e1000_config_fc_after_link_up =_ "Flow Control = FULL.\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2094 [e1000]e1000_config_fc_after_link_up =_ "Error forcing flow control settings\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1428 [e1000]e1000_copper_link_postconfig =_ "Error Configuring DSP after link up\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1420 [e1000]e1000_copper_link_postconfig =_ "Error Configuring Flow Control\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1414 [e1000]e1000_copper_link_postconfig =_ "Error configuring MAC to PHY settings\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1824 [e1000]e1000_phy_force_speed_duplex =_ "Error Resetting PHY DSP\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1796 [e1000]e1000_phy_force_speed_duplex =_ "Waiting for forced speed/duplex link.\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1756 [e1000]e1000_phy_force_speed_duplex =_ "M88E1000 PSCR: %x\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1733 [e1000]e1000_phy_force_speed_duplex =_ "Forcing 10mb "
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1727 [e1000]e1000_phy_force_speed_duplex =_ "Forcing 100mb "
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1717 [e1000]e1000_phy_force_speed_duplex =_ "Half Duplex\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1710 [e1000]e1000_phy_force_speed_duplex =_ "Full Duplex\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1681 [e1000]e1000_phy_force_speed_duplex =_ "hw->fc = %d\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:2654 [e1000]e1000_wait_autoneg =_ "Waiting for Auto-Neg to complete.\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1382 [e1000]e1000_copper_link_autoneg =_ "Error while waiting for autoneg to complete\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1361 [e1000]e1000_copper_link_autoneg =_ "Restarting Auto-Neg\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1358 [e1000]e1000_copper_link_autoneg =_ "Error Setting up Auto-Negotiation\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1355 [e1000]e1000_copper_link_autoneg =_ "Reconfiguring auto-neg advertisement params\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:975 [e1000]e1000_copper_link_rtl_setup =_ "Error Resetting the PHY\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1016 [e1000]gbe_dhg_phy_setup =_ "Error Resetting the PHY\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1011 [e1000]gbe_dhg_phy_setup =_ "e1000_copper_link_rtl_setup failed!\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:991 [e1000]gbe_dhg_phy_setup =_ "e1000_copper_link_rtl_setup failed!\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1321 [e1000]e1000_copper_link_mgp_setup =_ "Error Resetting the PHY\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1116 [e1000]e1000_copper_link_igp_setup =_ "Error Disabling LPLU D3\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1099 [e1000]e1000_copper_link_igp_setup =_ "Error Resetting the PHY\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:3228 [e1000]e1000_detect_gig_phy =_ "Invalid PHY ID 0x%X\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:3225 [e1000]e1000_detect_gig_phy =_ "PHY ID 0x%X detected\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:3219 [e1000]e1000_detect_gig_phy =_ "Invalid MAC type %d\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1059 [e1000]e1000_copper_link_preconfig =_ "Phy ID = %x\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1056 [e1000]e1000_copper_link_preconfig =_ "Error, did not detect valid phy.\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1511 [e1000]e1000_setup_copper_link =_ "Unable to establish link!!!\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1505 [e1000]e1000_setup_copper_link =_ "Valid link established!!!\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1483 [e1000]e1000_setup_copper_link =_ "Error Forcing Speed and Duplex\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1480 [e1000]e1000_setup_copper_link =_ "Forcing speed and duplex\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:1464 [e1000]e1000_setup_copper_link =_ "gbe_dhg_phy_setup failed!\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:785 [e1000]e1000_setup_link =_ "Initializing the Flow Control address, type and timer regs\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:768 [e1000]e1000_setup_link =_ "EEPROM Read Error\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:755 [e1000]e1000_setup_link =_ "After fix-ups FlowControl is now = %x\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:731 [e1000]e1000_setup_link =_ "EEPROM Read Error\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:4311 [e1000]e1000_init_rx_addrs =_ "Clearing RAR[1-15]\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:4304 [e1000]e1000_init_rx_addrs =_ "Programming MAC Address into RAR[0]\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:4471 [e1000]e1000_id_led_init =_ "EEPROM Read Error\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:599 [e1000]e1000_init_hw =_ "Zeroing the MTA\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:577 [e1000]e1000_init_hw =_ "Disabling MWI on 82542 rev 2.0\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:570 [e1000]e1000_init_hw =_ "Initializing the IEEE VLAN\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:562 [e1000]e1000_init_hw =_ "Error Initializing Identification LED\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:526 [e1000]e1000_reset_hw =_ "Masking off all interrupts\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:450 [e1000]e1000_reset_hw =_ "Issuing a global reset to MAC\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:417 [e1000]e1000_reset_hw =_ "Masking off all interrupts\012"
    drivers/net/ethernet/intel/e1000/e1000_hw.c:412 [e1000]e1000_reset_hw =_ "Disabling MWI on 82542 rev 2.0\012"
    drivers/input/mouse/synaptics.c:1690 [psmouse]synaptics_reconnect =_ "synaptics: reconnected after %d tries\012"
    drivers/input/mouse/alps.c:480 [psmouse]alps_process_trackstick_packet_v3 =_ "alps: Bad trackstick packet, discarding\012"
    drivers/input/mouse/alps.c:1393 [psmouse]alps_rpt_cmd =_ "alps: %2.2X report: %3ph\012"
    drivers/input/mouse/alps.c:1914 [psmouse]alps_get_v3_v7_resolution =_ "alps: pitch %dx%d num-electrodes %dx%d physical size %dx%d mm res %dx%d\012"
    drivers/input/mouse/alps.c:1424 [psmouse]alps_enter_command_mode =_ "alps: unknown response while entering command mode\012"
    drivers/input/mouse/alps.c:1768 [psmouse]alps_setup_trackstick_v3 =_ "alps: trackstick E7 report: %3ph\012"
    drivers/input/mouse/alps.c:2323 [psmouse]alps_identify =_ "alps: Likely not an ALPS touchpad: E7=%3ph, EC=%3ph\012"
    drivers/input/mouse/alps.c:1209 [psmouse]alps_flush_packet =_ "alps: refusing packet %3ph (suspected interleaved ps/2)\012"
    drivers/input/mouse/alps.c:1145 [psmouse]alps_handle_interleaved_ps2 =_ "alps: refusing packet %4ph (suspected interleaved ps/2)\012"
    drivers/input/mouse/alps.c:1281 [psmouse]alps_process_byte =_ "alps: refusing packet[%i] = %x\012"
    drivers/input/mouse/alps.c:1258 [psmouse]alps_process_byte =_ "alps: refusing packet[%i] = %x\012"
    drivers/input/mouse/alps.c:1248 [psmouse]alps_process_byte =_ "alps: refusing packet[0] = %x (mask0 = %x, byte0 = %x)\012"
    drivers/input/mouse/elantech.c:1439 [psmouse]elantech_detect =_ "elantech: Probably not a real Elantech touchpad. Aborting.\012"
    drivers/input/mouse/elantech.c:1435 [psmouse]elantech_detect =_ "elantech: Elantech version query result 0x%02x, 0x%02x, 0x%02x.\012"
    drivers/input/mouse/elantech.c:1429 [psmouse]elantech_detect =_ "elantech: failed to query firmware version.\012"
    drivers/input/mouse/elantech.c:1419 [psmouse]elantech_detect =_ "elantech: unexpected magic knock result 0x%02x, 0x%02x, 0x%02x.\012"
    drivers/input/mouse/elantech.c:1407 [psmouse]elantech_detect =_ "elantech: sending Elantech magic knock failed.\012"
    drivers/input/mouse/logips2pp.c:88 [psmouse]ps2pp_process_byte =_ "logips2pp: Received PS2++ packet #%x, but don't know how to handle.\012"
    drivers/input/mouse/sentelic.c:248 [psmouse]fsp_page_reg_read =_ "sentelic: READ PAGE REG: 0x%02x (rc = %d)\012"
    drivers/input/mouse/sentelic.c:286 [psmouse]fsp_page_reg_write =_ "sentelic: WRITE PAGE REG: to 0x%02x (rc = %d)\012"
    drivers/input/mouse/sentelic.c:189 [psmouse]fsp_reg_write =_ "sentelic: WRITE REG: 0x%02x to 0x%02x (rc = %d)\012"
    drivers/input/mouse/sentelic.c:137 [psmouse]fsp_reg_read =_ "sentelic: READ REG: 0x%02x is 0x%02x (rc = %d)\012"
    drivers/input/mouse/cypress_ps2.c:247 [psmouse]cypress_read_fw_version =_ "cypress_ps2: cytp->tp_metrics_supported = %d\012"
    drivers/input/mouse/cypress_ps2.c:245 [psmouse]cypress_read_fw_version =_ "cypress_ps2: cytp->fw_version = %d\012"
    drivers/input/mouse/cypress_ps2.c:168 [psmouse]cypress_verify_cmd_state =_ "cypress_ps2: verify cmd state failed.\012"
    drivers/input/mouse/cypress_ps2.c:130 [psmouse]cypress_ps2_read_cmd_status =_ "cypress_ps2: Command 0x%02x response data (0x): %*ph\012"
    drivers/input/mouse/cypress_ps2.c:48 [psmouse]cypress_ps2_sendbyte =_ "cypress_ps2: sending command 0x%02x failed, resp 0x%02x\012"
    drivers/input/mouse/cypress_ps2.c:180 [psmouse]cypress_send_ext_cmd =_ "cypress_ps2: send extension cmd 0x%02x, [%d %d %d %d]\012"
    net/bluetooth/af_bluetooth.c:539 [bluetooth]bt_sock_wait_ready =_ "sk %p\012"
    net/bluetooth/af_bluetooth.c:502 [bluetooth]bt_sock_wait_state =_ "sk %p\012"
    net/bluetooth/af_bluetooth.c:455 [bluetooth]bt_sock_ioctl =_ "sk %p cmd %x arg %lx\012"
    net/bluetooth/af_bluetooth.c:411 [bluetooth]bt_sock_poll =_ "sock %p, sk %p\012"
    net/bluetooth/af_bluetooth.c:295 [bluetooth]bt_sock_stream_recvmsg =_ "sk %p size %zu\012"
    net/bluetooth/af_bluetooth.c:220 [bluetooth]bt_sock_recvmsg =_ "sock %p sk %p len %zu\012"
    net/bluetooth/af_bluetooth.c:180 [bluetooth]bt_accept_dequeue =_ "parent %p\012"
    net/bluetooth/af_bluetooth.c:166 [bluetooth]bt_accept_unlink =_ "sk %p state %d\012"
    net/bluetooth/af_bluetooth.c:155 [bluetooth]bt_accept_enqueue =_ "parent %p, sk %p\012"
    net/bluetooth/hci_core.c:5687 [bluetooth]update_background_scan_complete =_ "HCI request failed to update background scanning: status 0x%2.2x\012"
    net/bluetooth/hci_core.c:5764 [bluetooth]hci_update_background_scan =_ "%s starting background scanning\012"
    net/bluetooth/hci_core.c:5742 [bluetooth]hci_update_background_scan =_ "%s stopping background scanning\012"
    net/bluetooth/hci_core.c:5375 [bluetooth]hci_req_cmd_complete =_ "opcode 0x%04x status 0x%02x\012"
    net/bluetooth/hci_core.c:4784 [bluetooth]hci_send_sco =_ "%s len %d\012"
    net/bluetooth/hci_core.c:4758 [bluetooth]hci_queue_acl =_ "%s frag %p len %d\012"
    net/bluetooth/hci_core.c:4737 [bluetooth]hci_queue_acl =_ "%s frag %p len %d\012"
    net/bluetooth/hci_core.c:4732 [bluetooth]hci_queue_acl =_ "%s nonfrag skb %p len %d\012"
    net/bluetooth/hci_core.c:4771 [bluetooth]hci_send_acl =_ "%s chan %p flags 0x%4.4x\012"
    net/bluetooth/hci_core.c:4687 [bluetooth]hci_sent_cmd_data =_ "%s opcode 0x%4.4x\012"
    net/bluetooth/hci_core.c:4644 [bluetooth]hci_req_add_ev =_ "%s opcode 0x%4.4x plen %d\012"
    net/bluetooth/hci_core.c:4604 [bluetooth]hci_prepare_cmd =_ "skb len %d\012"
    net/bluetooth/hci_core.c:4618 [bluetooth]hci_send_cmd =_ "%s opcode 0x%4.4x plen %d\012"
    net/bluetooth/hci_core.c:4555 [bluetooth]hci_req_run =_ "length %u\012"
    net/bluetooth/hci_core.c:4505 [bluetooth]hci_unregister_cb =_ "%p name %s\012"
    net/bluetooth/hci_core.c:4493 [bluetooth]hci_register_cb =_ "%p name %s\012"
    net/bluetooth/hci_core.c:4226 [bluetooth]hci_unregister_dev =_ "%p name %s bus %d\012"
    net/bluetooth/hci_core.c:3054 [bluetooth]hci_rfkill_set_block =_ "%p name %s blocked %d\012"
    net/bluetooth/hci_core.c:4145 [bluetooth]hci_register_dev =_ "%p name %s bus %d\012"
    net/bluetooth/hci_core.c:5316 [bluetooth]hci_scodata_packet =_ "%s len %d handle 0x%4.4x\012"
    net/bluetooth/hci_core.c:5283 [bluetooth]hci_acldata_packet =_ "%s len %d handle 0x%4.4x flags 0x%4.4x\012"
    net/bluetooth/hci_core.c:5479 [bluetooth]hci_rx_work =_ "%s SCO data packet\012"
    net/bluetooth/hci_core.c:5474 [bluetooth]hci_rx_work =_ "%s ACL data packet\012"
    net/bluetooth/hci_core.c:5469 [bluetooth]hci_rx_work =_ "%s Event packet\012"
    net/bluetooth/hci_core.c:5440 [bluetooth]hci_rx_work =_ "%s\012"
    net/bluetooth/hci_core.c:5496 [bluetooth]hci_cmd_work =_ "%s cmd_cnt %d cmd queued %d\012"
    net/bluetooth/hci_core.c:4519 [bluetooth]hci_send_frame =_ "%s type %d len %d\012"
    net/bluetooth/hci_core.c:5220 [bluetooth]hci_sched_le =_ "chan %p skb %p len %d priority %u\012"
    net/bluetooth/hci_core.c:5201 [bluetooth]hci_sched_le =_ "%s\012"
    net/bluetooth/hci_core.c:5185 [bluetooth]hci_sched_esco =_ "skb %p len %d\012"
    net/bluetooth/hci_core.c:5177 [bluetooth]hci_sched_esco =_ "%s\012"
    net/bluetooth/hci_core.c:4858 [bluetooth]hci_low_sent =_ "conn %p quote %d\012"
    net/bluetooth/hci_core.c:5161 [bluetooth]hci_sched_sco =_ "skb %p len %d\012"
    net/bluetooth/hci_core.c:5154 [bluetooth]hci_sched_sco =_ "%s\012"
    net/bluetooth/hci_core.c:5094 [bluetooth]hci_sched_acl_blk =_ "chan %p skb %p len %d priority %u\012"
    net/bluetooth/hci_core.c:5080 [bluetooth]hci_sched_acl_blk =_ "%s\012"
    net/bluetooth/hci_core.c:5004 [bluetooth]hci_prio_recalculate =_ "chan %p skb %p promoted to %d\012"
    net/bluetooth/hci_core.c:4971 [bluetooth]hci_prio_recalculate =_ "%s\012"
    net/bluetooth/hci_core.c:4961 [bluetooth]hci_chan_sent =_ "chan %p quote %d\012"
    net/bluetooth/hci_core.c:4892 [bluetooth]hci_chan_sent =_ "%s\012"
    net/bluetooth/hci_core.c:5046 [bluetooth]hci_sched_acl_pkt =_ "chan %p skb %p len %d priority %u\012"
    net/bluetooth/hci_core.c:5126 [bluetooth]hci_sched_acl =_ "%s\012"
    net/bluetooth/hci_core.c:5252 [bluetooth]hci_tx_work =_ "%s acl %d sco %d le %d\012"
    net/bluetooth/hci_core.c:3080 [bluetooth]hci_power_on =_ "%s\012"
    net/bluetooth/hci_core.c:3141 [bluetooth]hci_power_off =_ "%s\012"
    net/bluetooth/hci_core.c:3152 [bluetooth]hci_discov_off =_ "%s\012"
    net/bluetooth/hci_core.c:3893 [bluetooth]le_scan_disable_work =_ "%s\012"
    net/bluetooth/hci_core.c:3920 [bluetooth]set_random_addr =_ "Deferring random address update\012"
    net/bluetooth/hci_core.c:3828 [bluetooth]hci_conn_params_clear_all =_ "All LE connection parameters were removed\012"
    net/bluetooth/hci_core.c:3815 [bluetooth]hci_conn_params_clear_disabled =_ "All LE disabled connection parameters were removed\012"
    net/bluetooth/hci_core.c:3800 [bluetooth]hci_conn_params_del =_ "addr %pMR (type %u)\012"
    net/bluetooth/hci_core.c:3770 [bluetooth]hci_conn_params_set =_ "addr %pMR (type %u) auto_connect %u\012"
    net/bluetooth/hci_core.c:3729 [bluetooth]hci_conn_params_add =_ "addr %pMR (type %u)\012"
    net/bluetooth/hci_core.c:3571 [bluetooth]hci_add_remote_oob_data =_ "%s for %pMR\012"
    net/bluetooth/hci_core.c:3520 [bluetooth]hci_remove_remote_oob_data =_ "%s removing %pMR (%u)\012"
    net/bluetooth/hci_core.c:3469 [bluetooth]hci_remove_irk =_ "%s removing %pMR\012"
    net/bluetooth/hci_core.c:3451 [bluetooth]hci_remove_ltk =_ "%s removing %pMR\012"
    net/bluetooth/hci_core.c:3434 [bluetooth]hci_remove_link_key =_ "%s removing %pMR\012"
    net/bluetooth/hci_core.c:3346 [bluetooth]hci_add_link_key =_ "%s key for %pMR type %u\012"
    net/bluetooth/hci_core.c:2811 [bluetooth]hci_update_scan_state =_ "%s scan 0x%02x\012"
    net/bluetooth/hci_core.c:1998 [bluetooth]hci_auth_req =_ "%s %x\012"
    net/bluetooth/hci_core.c:2008 [bluetooth]hci_encrypt_req =_ "%s %x\012"
    net/bluetooth/hci_core.c:1988 [bluetooth]hci_scan_req =_ "%s %x\012"
    net/bluetooth/hci_core.c:2018 [bluetooth]hci_linkpol_req =_ "%s %x\012"
    include/net/bluetooth/hci_core.h:824 [bluetooth]hci_conn_drop =_ "hcon %p orig refcnt %d\012"
    net/bluetooth/hci_core.c:2594 [bluetooth]hci_pend_le_actions_clear =_ "All LE pending actions cleared\012"
    net/bluetooth/hci_core.c:1087 [bluetooth]hci_req_cancel =_ "%s err 0x%2.2x\012"
    net/bluetooth/hci_core.c:2599 [bluetooth]hci_dev_do_close =_ "%s %p\012"
    net/bluetooth/hci_core.c:1353 [bluetooth]hci_init1_req =_ "%s %ld\012"
    net/bluetooth/hci_core.c:1302 [bluetooth]hci_reset_req =_ "%s %ld\012"
    net/bluetooth/hci_core.c:1956 [bluetooth]hci_init0_req =_ "%s %ld\012"
    net/bluetooth/hci_core.c:2383 [bluetooth]hci_dev_do_open =_ "%s %p\012"
    include/net/bluetooth/hci_core.h:861 [bluetooth]hci_dev_put =_ "%s orig refcnt %d\012"
    net/bluetooth/hci_core.c:2262 [bluetooth]inquiry_cache_dump =_ "cache %p, copied %d\012"
    net/bluetooth/hci_core.c:1277 [bluetooth]__hci_req_sync =_ "%s end: err %d\012"
    net/bluetooth/hci_core.c:1225 [bluetooth]__hci_req_sync =_ "%s start\012"
    net/bluetooth/hci_core.c:2272 [bluetooth]hci_inq_req =_ "%s\012"
    net/bluetooth/hci_core.c:2362 [bluetooth]hci_inquiry =_ "num_rsp %d\012"
    net/bluetooth/hci_core.c:2183 [bluetooth]hci_inquiry_cache_update =_ "cache %p, %pMR\012"
    net/bluetooth/hci_core.c:2145 [bluetooth]hci_inquiry_cache_lookup_resolve =_ "cache %p bdaddr %pMR state %d\012"
    net/bluetooth/hci_core.c:2128 [bluetooth]hci_inquiry_cache_lookup_unknown =_ "cache %p, %pMR\012"
    net/bluetooth/hci_core.c:2112 [bluetooth]hci_inquiry_cache_lookup =_ "cache %p, %pMR\012"
    net/bluetooth/hci_core.c:2066 [bluetooth]hci_discovery_set_state =_ "%s state %u -> %u\012"
    include/net/bluetooth/hci_core.h:869 [bluetooth]hci_dev_hold =_ "%s orig refcnt %d\012"
    net/bluetooth/hci_core.c:2030 [bluetooth]hci_dev_get =_ "%d\012"
    net/bluetooth/hci_core.c:1144 [bluetooth]hci_get_cmd_complete =_ "opcode doesn't match (0x%2.2x != 0x%2.2x)\012"
    net/bluetooth/hci_core.c:1128 [bluetooth]hci_get_cmd_complete =_ "Last event is not cmd complete (0x%2.2x)\012"
    net/bluetooth/hci_core.c:1076 [bluetooth]hci_req_sync_complete =_ "%s result 0x%2.2x\012"
    net/bluetooth/hci_core.c:1199 [bluetooth]__hci_cmd_sync_ev =_ "%s end: err %d\012"
    net/bluetooth/hci_core.c:1158 [bluetooth]__hci_cmd_sync_ev =_ "%s\012"
    net/bluetooth/hci_conn.c:1346 [bluetooth]hci_chan_list_flush =_ "hcon %p\012"
    net/bluetooth/hci_conn.c:1327 [bluetooth]hci_chan_del =_ "%s hcon %p chan %p\012"
    net/bluetooth/hci_conn.c:1305 [bluetooth]hci_chan_create =_ "Refusing to create new hci_chan\012"
    net/bluetooth/hci_conn.c:1302 [bluetooth]hci_chan_create =_ "%s hcon %p\012"
    net/bluetooth/hci_conn.c:1163 [bluetooth]hci_conn_check_pending =_ "hdev %s\012"
    net/bluetooth/hci_conn.c:1148 [bluetooth]hci_conn_hash_flush =_ "hdev %s\012"
    net/bluetooth/hci_conn.c:1122 [bluetooth]hci_conn_enter_active_mode =_ "hcon %p mode %d\012"
    net/bluetooth/hci_conn.c:1101 [bluetooth]hci_conn_switch_role =_ "hcon %p\012"
    net/bluetooth/hci_conn.c:1086 [bluetooth]hci_conn_change_link_key =_ "hcon %p\012"
    net/bluetooth/hci_conn.c:1067 [bluetooth]hci_conn_check_secure =_ "hcon %p\012"
    net/bluetooth/hci_conn.c:983 [bluetooth]hci_conn_encrypt =_ "hcon %p\012"
    net/bluetooth/hci_conn.c:946 [bluetooth]hci_conn_auth =_ "hcon %p\012"
    net/bluetooth/hci_conn.c:998 [bluetooth]hci_conn_security =_ "hcon %p\012"
    net/bluetooth/hci_conn.c:923 [bluetooth]hci_conn_check_link_mode =_ "hcon %p\012"
    net/bluetooth/hci_conn.c:71 [bluetooth]hci_acl_create_connection =_ "hcon %p\012"
    include/net/bluetooth/hci_core.h:816 [bluetooth]hci_conn_hold =_ "hcon %p orig refcnt %d\012"
    net/bluetooth/hci_conn.c:564 [bluetooth]hci_get_route =_ "%pMR -> %pMR\012"
    include/net/bluetooth/hci_core.h:861 [bluetooth]hci_dev_put =_ "%s orig refcnt %d\012"
    include/net/bluetooth/hci_core.h:824 [bluetooth]hci_conn_drop =_ "hcon %p orig refcnt %d\012"
    net/bluetooth/hci_conn.c:508 [bluetooth]hci_conn_del =_ "%s hcon %p handle %d\012"
    include/net/bluetooth/hci_core.h:869 [bluetooth]hci_dev_hold =_ "%s orig refcnt %d\012"
    net/bluetooth/hci_conn.c:162 [bluetooth]hci_amp_disconn =_ "hcon %p\012"
    net/bluetooth/hci_conn.c:112 [bluetooth]hci_acl_create_connection_cancel =_ "hcon %p\012"
    net/bluetooth/hci_conn.c:321 [bluetooth]hci_conn_timeout =_ "hcon %p state %s\012"
    net/bluetooth/hci_conn.c:369 [bluetooth]hci_conn_idle =_ "hcon %p mode %d\012"
    net/bluetooth/hci_conn.c:412 [bluetooth]le_conn_timeout =_ "\012"
    net/bluetooth/hci_conn.c:435 [bluetooth]hci_conn_add =_ "%s dst %pMR\012"
    net/bluetooth/hci_conn.c:177 [bluetooth]hci_add_sco =_ "hcon %p\012"
    net/bluetooth/hci_conn.c:302 [bluetooth]hci_sco_setup =_ "hcon %p\012"
    net/bluetooth/hci_conn.c:282 [bluetooth]hci_le_start_enc =_ "hcon %p\012"
    net/bluetooth/hci_conn.c:196 [bluetooth]hci_setup_sync =_ "hcon %p\012"
    net/bluetooth/hci_conn.c:135 [bluetooth]hci_disconnect =_ "hcon %p\012"
    net/bluetooth/hci_event.c:3124 [bluetooth]hci_num_comp_blocks_evt =_ "%s num_blocks %d num_hndl %d\012"
    net/bluetooth/hci_event.c:3119 [bluetooth]hci_num_comp_blocks_evt =_ "%s bad parameters\012"
    net/bluetooth/hci_event.c:4202 [bluetooth]hci_disconn_phylink_complete_evt =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:4179 [bluetooth]hci_disconn_loglink_complete_evt =_ "%s log handle 0x%4.4x status 0x%2.2x\012"
    net/bluetooth/hci_event.c:4156 [bluetooth]hci_loglink_complete_evt =_ "hcon %p mgr %p hchan %p\012"
    net/bluetooth/hci_event.c:4143 [bluetooth]hci_loglink_complete_evt =_ "%s log_handle 0x%4.4x phy_handle 0x%2.2x status 0x%2.2x\012"
    net/bluetooth/hci_event.c:4102 [bluetooth]hci_phy_link_complete_evt =_ "%s handle 0x%2.2x status 0x%2.2x\012"
    net/bluetooth/hci_event.c:4053 [bluetooth]hci_remote_oob_data_request_evt =_ "%s\012"
    net/bluetooth/hci_event.c:4832 [bluetooth]hci_chan_selected_evt =_ "%s handle 0x%2.2x\012"
    net/bluetooth/hci_event.c:4645 [bluetooth]hci_le_ltk_request_evt =_ "%s handle 0x%4.4x\012"
    net/bluetooth/hci_event.c:4449 [bluetooth]check_pending_le_conn =_ "Failed to connect: err %ld\012"
    net/bluetooth/hci_event.c:4359 [bluetooth]hci_le_conn_update_complete_evt =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:4226 [bluetooth]hci_le_conn_complete_evt =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:4032 [bluetooth]hci_remote_host_features_evt =_ "%s\012"
    net/bluetooth/hci_event.c:4000 [bluetooth]hci_simple_pair_complete_evt =_ "%s\012"
    net/bluetooth/hci_event.c:3961 [bluetooth]hci_keypress_notify_evt =_ "%s\012"
    net/bluetooth/hci_event.c:3941 [bluetooth]hci_user_passkey_notify_evt =_ "%s\012"
    net/bluetooth/hci_event.c:3929 [bluetooth]hci_user_passkey_request_evt =_ "%s\012"
    net/bluetooth/hci_event.c:3902 [bluetooth]hci_user_confirm_request_evt =_ "Auto-accept of user confirmation with %ums delay\012"
    net/bluetooth/hci_event.c:3896 [bluetooth]hci_user_confirm_request_evt =_ "Confirming auto-accept as acceptor\012"
    net/bluetooth/hci_event.c:3877 [bluetooth]hci_user_confirm_request_evt =_ "Rejecting request: remote device can't provide MITM\012"
    net/bluetooth/hci_event.c:3856 [bluetooth]hci_user_confirm_request_evt =_ "%s\012"
    net/bluetooth/hci_event.c:3832 [bluetooth]hci_io_capa_reply_evt =_ "%s\012"
    net/bluetooth/hci_event.c:3758 [bluetooth]hci_io_capa_request_evt =_ "%s\012"
    net/bluetooth/hci_event.c:3692 [bluetooth]hci_key_refresh_complete_evt =_ "%s status 0x%2.2x handle 0x%4.4x\012"
    net/bluetooth/hci_event.c:3643 [bluetooth]hci_extended_inquiry_result_evt =_ "%s num_rsp %d\012"
    net/bluetooth/hci_event.c:3566 [bluetooth]hci_sync_conn_complete_evt =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:3502 [bluetooth]hci_remote_ext_features_evt =_ "%s\012"
    net/bluetooth/hci_event.c:3438 [bluetooth]hci_inquiry_result_with_rssi_evt =_ "%s num_rsp %d\012"
    net/bluetooth/hci_event.c:3419 [bluetooth]hci_pscan_rep_mode_evt =_ "%s\012"
    net/bluetooth/hci_event.c:3403 [bluetooth]hci_pkt_type_change_evt =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:3380 [bluetooth]hci_clock_offset_evt =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:3323 [bluetooth]hci_link_key_notify_evt =_ "%s\012"
    net/bluetooth/hci_event.c:3294 [bluetooth]hci_link_key_request_evt =_ "%s ignoring key unauthenticated for high security\012"
    net/bluetooth/hci_event.c:3286 [bluetooth]hci_link_key_request_evt =_ "%s ignoring unauthenticated key\012"
    net/bluetooth/hci_event.c:3277 [bluetooth]hci_link_key_request_evt =_ "%s found key type %u for %pMR\012"
    net/bluetooth/hci_event.c:3272 [bluetooth]hci_link_key_request_evt =_ "%s link key not found for %pMR\012"
    net/bluetooth/hci_event.c:3262 [bluetooth]hci_link_key_request_evt =_ "%s\012"
    net/bluetooth/hci_event.c:3190 [bluetooth]hci_pin_code_request_evt =_ "%s\012"
    net/bluetooth/hci_event.c:3162 [bluetooth]hci_mode_change_evt =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:3036 [bluetooth]hci_num_comp_pkts_evt =_ "%s num_hndl %d\012"
    net/bluetooth/hci_event.c:3032 [bluetooth]hci_num_comp_pkts_evt =_ "%s bad parameters\012"
    net/bluetooth/hci_event.c:3003 [bluetooth]hci_role_change_evt =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:1955 [bluetooth]hci_cs_le_start_enc =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:1904 [bluetooth]hci_cs_le_create_conn =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:1985 [bluetooth]hci_cs_switch_role =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:1814 [bluetooth]hci_cs_exit_sniff_mode =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:1787 [bluetooth]hci_cs_sniff_mode =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:1887 [bluetooth]hci_cs_accept_phylink =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:1862 [bluetooth]hci_cs_create_phylink =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:1764 [bluetooth]hci_cs_setup_sync_conn =_ "%s handle 0x%4.4x\012"
    net/bluetooth/hci_event.c:1753 [bluetooth]hci_cs_setup_sync_conn =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:1725 [bluetooth]hci_cs_read_remote_ext_features =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:1698 [bluetooth]hci_cs_read_remote_features =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:1655 [bluetooth]hci_cs_remote_name_req =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:1522 [bluetooth]hci_cs_set_conn_encrypt =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:1495 [bluetooth]hci_cs_auth_requested =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:1472 [bluetooth]hci_cs_add_sco =_ "%s handle 0x%4.4x\012"
    net/bluetooth/hci_event.c:1461 [bluetooth]hci_cs_add_sco =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:1432 [bluetooth]hci_cs_create_conn =_ "%s bdaddr %pMR hcon %p\012"
    net/bluetooth/hci_event.c:1422 [bluetooth]hci_cs_create_conn =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:1407 [bluetooth]hci_cs_inquiry =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:2973 [bluetooth]hci_cmd_status_evt =_ "%s opcode 0x%4.4x\012"
    net/bluetooth/hci_event.c:1377 [bluetooth]hci_cc_read_tx_power =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:1357 [bluetooth]hci_cc_read_rssi =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:1344 [bluetooth]hci_cc_write_remote_amp_assoc =_ "%s status 0x%2.2x phy_handle 0x%2.2x\012"
    net/bluetooth/hci_event.c:1324 [bluetooth]hci_cc_set_adv_param =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:1291 [bluetooth]hci_cc_write_le_host_supported =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:1277 [bluetooth]hci_cc_le_read_supported_states =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:1259 [bluetooth]hci_cc_le_del_from_white_list =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:1240 [bluetooth]hci_cc_le_add_to_white_list =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:1226 [bluetooth]hci_cc_le_clear_white_list =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:1213 [bluetooth]hci_cc_le_read_white_list_size =_ "%s status 0x%2.2x size %u\012"
    net/bluetooth/hci_event.c:1144 [bluetooth]hci_cc_le_set_scan_enable =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:1093 [bluetooth]hci_cc_le_set_scan_param =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:1057 [bluetooth]hci_cc_le_set_adv_enable =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:1037 [bluetooth]hci_cc_le_set_random_addr =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:993 [bluetooth]hci_cc_user_passkey_neg_reply =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:977 [bluetooth]hci_cc_user_passkey_reply =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:962 [bluetooth]hci_cc_user_confirm_neg_reply =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:946 [bluetooth]hci_cc_user_confirm_reply =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:934 [bluetooth]hci_cc_le_read_adv_tx_power =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:921 [bluetooth]hci_cc_le_read_local_features =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:913 [bluetooth]hci_cc_le_read_buffer_size =_ "%s le mtu %d:%d\012"
    net/bluetooth/hci_event.c:903 [bluetooth]hci_cc_le_read_buffer_size =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:1022 [bluetooth]hci_cc_read_local_oob_ext_data =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:1009 [bluetooth]hci_cc_read_local_oob_data =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:887 [bluetooth]hci_cc_pin_code_neg_reply =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:861 [bluetooth]hci_cc_pin_code_reply =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:847 [bluetooth]hci_cc_read_inq_rsp_tx_power =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:821 [bluetooth]hci_cc_read_local_amp_assoc =_ "frag_len %zu rem_len %zu\012"
    net/bluetooth/hci_event.c:812 [bluetooth]hci_cc_read_local_amp_assoc =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:751 [bluetooth]hci_cc_read_clock =_ "%s\012"
    net/bluetooth/hci_event.c:785 [bluetooth]hci_cc_read_local_amp_info =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:610 [bluetooth]hci_cc_read_flow_control_mode =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:742 [bluetooth]hci_cc_read_data_block_size =_ "%s blk mtu %d cnt %d len %d\012"
    net/bluetooth/hci_event.c:730 [bluetooth]hci_cc_read_data_block_size =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:715 [bluetooth]hci_cc_write_page_scan_type =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:700 [bluetooth]hci_cc_read_page_scan_type =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:682 [bluetooth]hci_cc_write_page_scan_activity =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:665 [bluetooth]hci_cc_read_page_scan_activity =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:648 [bluetooth]hci_cc_read_bd_addr =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:641 [bluetooth]hci_cc_read_buffer_size =_ "%s acl mtu %d:%d sco mtu %d:%d\012"
    net/bluetooth/hci_event.c:622 [bluetooth]hci_cc_read_buffer_size =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:593 [bluetooth]hci_cc_read_local_ext_features =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:543 [bluetooth]hci_cc_read_local_features =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:528 [bluetooth]hci_cc_read_local_commands =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:508 [bluetooth]hci_cc_read_local_version =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:477 [bluetooth]hci_cc_write_sc_support =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:445 [bluetooth]hci_cc_write_ssp_mode =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:437 [bluetooth]hci_cc_read_num_supported_iac =_ "%s num iac %d\012"
    net/bluetooth/hci_event.c:430 [bluetooth]hci_cc_read_num_supported_iac =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:419 [bluetooth]hci_cc_write_voice_setting =_ "%s voice setting 0x%4.4x\012"
    net/bluetooth/hci_event.c:403 [bluetooth]hci_cc_write_voice_setting =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:390 [bluetooth]hci_cc_read_voice_setting =_ "%s voice setting 0x%4.4x\012"
    net/bluetooth/hci_event.c:378 [bluetooth]hci_cc_read_voice_setting =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:356 [bluetooth]hci_cc_write_class_of_dev =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:348 [bluetooth]hci_cc_read_class_of_dev =_ "%s class 0x%.2x%.2x%.2x\012"
    net/bluetooth/hci_event.c:340 [bluetooth]hci_cc_read_class_of_dev =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:307 [bluetooth]hci_cc_write_scan_enable =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:284 [bluetooth]hci_cc_write_encrypt_mode =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:255 [bluetooth]hci_cc_write_auth_enable =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:240 [bluetooth]hci_cc_read_local_name =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:220 [bluetooth]hci_cc_write_local_name =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:188 [bluetooth]hci_cc_reset =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:172 [bluetooth]hci_cc_write_def_link_policy =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:158 [bluetooth]hci_cc_read_def_link_policy =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:135 [bluetooth]hci_cc_write_link_policy =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:115 [bluetooth]hci_cc_read_link_policy =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:96 [bluetooth]hci_cc_role_discovery =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:88 [bluetooth]hci_cc_remote_name_req_cancel =_ "%s\012"
    net/bluetooth/hci_event.c:75 [bluetooth]hci_cc_exit_periodic_inq =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:63 [bluetooth]hci_cc_periodic_inq =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:43 [bluetooth]hci_cc_inquiry_cancel =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:2878 [bluetooth]hci_cmd_complete_evt =_ "%s opcode 0x%4.4x\012"
    net/bluetooth/hci_event.c:2572 [bluetooth]hci_remote_features_evt =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:2549 [bluetooth]hci_change_link_key_complete_evt =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:2476 [bluetooth]hci_encrypt_change_evt =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:2434 [bluetooth]hci_remote_name_evt =_ "%s\012"
    include/net/bluetooth/hci_core.h:824 [bluetooth]hci_conn_drop =_ "hcon %p orig refcnt %d\012"
    net/bluetooth/hci_event.c:2369 [bluetooth]hci_auth_complete_evt =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:2295 [bluetooth]hci_disconn_complete_evt =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:2184 [bluetooth]hci_conn_request_evt =_ "%s bdaddr %pMR type 0x%x\012"
    include/net/bluetooth/hci_core.h:816 [bluetooth]hci_conn_hold =_ "hcon %p orig refcnt %d\012"
    net/bluetooth/hci_event.c:2087 [bluetooth]hci_conn_complete_evt =_ "%s\012"
    net/bluetooth/hci_event.c:2050 [bluetooth]hci_inquiry_result_evt =_ "%s num_rsp %d\012"
    net/bluetooth/hci_event.c:2009 [bluetooth]hci_inquiry_complete_evt =_ "%s status 0x%2.2x\012"
    net/bluetooth/hci_event.c:5043 [bluetooth]hci_event_packet =_ "%s event 0x%2.2x\012"
    net/bluetooth/mgmt.c:7180 [bluetooth]adv_enable_complete =_ "%s status %u\012"
    net/bluetooth/mgmt.c:7169 [bluetooth]mgmt_discovering =_ "%s discovering %u\012"
    net/bluetooth/mgmt.c:6917 [bluetooth]mgmt_read_local_oob_data_complete =_ "%s status %u\012"
    net/bluetooth/mgmt.c:6692 [bluetooth]mgmt_user_passkey_notify =_ "%s\012"
    net/bluetooth/mgmt.c:6631 [bluetooth]mgmt_user_passkey_request =_ "%s\012"
    net/bluetooth/mgmt.c:6615 [bluetooth]mgmt_user_confirm_request =_ "%s\012"
    net/bluetooth/mgmt.c:6070 [bluetooth]powered_complete =_ "status 0x%02x\012"
    include/net/bluetooth/hci_core.h:861 [bluetooth]hci_dev_put =_ "%s orig refcnt %d\012"
    net/bluetooth/mgmt.c:1128 [bluetooth]rpa_expired =_ "\012"
    net/bluetooth/mgmt.c:254 [bluetooth]cmd_status =_ "sock %p, index %u, cmd %u, status %u\012"
    net/bluetooth/mgmt.c:316 [bluetooth]read_version =_ "sock %p\012"
    net/bluetooth/mgmt.c:335 [bluetooth]read_commands =_ "sock %p\012"
    net/bluetooth/mgmt.c:402 [bluetooth]read_index_list =_ "Added hci%u\012"
    net/bluetooth/mgmt.c:368 [bluetooth]read_index_list =_ "sock %p\012"
    net/bluetooth/mgmt.c:1164 [bluetooth]read_controller_info =_ "sock %p %s\012"
    net/bluetooth/mgmt.c:1256 [bluetooth]clean_up_hci_complete =_ "%s status 0x%02x\012"
    net/bluetooth/mgmt.c:1372 [bluetooth]set_powered =_ "request for %s\012"
    net/bluetooth/mgmt.c:1528 [bluetooth]set_discoverable_complete =_ "status 0x%02x\012"
    net/bluetooth/mgmt.c:1590 [bluetooth]set_discoverable =_ "request for %s\012"
    net/bluetooth/mgmt.c:1786 [bluetooth]set_connectable_complete =_ "status 0x%02x\012"
    net/bluetooth/mgmt.c:1867 [bluetooth]set_connectable =_ "request for %s\012"
    net/bluetooth/mgmt.c:4500 [bluetooth]fast_connectable_complete =_ "status 0x%02x\012"
    net/bluetooth/mgmt.c:4537 [bluetooth]set_fast_connectable =_ "%s\012"
    net/bluetooth/mgmt.c:1970 [bluetooth]set_bondable =_ "request for %s\012"
    net/bluetooth/mgmt.c:2003 [bluetooth]set_link_security =_ "request for %s\012"
    net/bluetooth/mgmt.c:2072 [bluetooth]set_ssp =_ "request for %s\012"
    net/bluetooth/mgmt.c:2154 [bluetooth]set_hs =_ "request for %s\012"
    net/bluetooth/mgmt.c:2248 [bluetooth]set_le =_ "request for %s\012"
    net/bluetooth/mgmt.c:2555 [bluetooth]set_class_complete =_ "status 0x%02x\012"
    net/bluetooth/mgmt.c:2568 [bluetooth]set_dev_class =_ "request for %s\012"
    net/bluetooth/mgmt.c:3489 [bluetooth]set_name_complete =_ "status 0x%02x\012"
    net/bluetooth/mgmt.c:3520 [bluetooth]set_local_name =_ "\012"
    net/bluetooth/mgmt.c:2391 [bluetooth]add_uuid_complete =_ "status 0x%02x\012"
    net/bluetooth/mgmt.c:2404 [bluetooth]add_uuid =_ "request for %s\012"
    net/bluetooth/mgmt.c:1013 [bluetooth]update_class =_ "%s\012"
    net/bluetooth/mgmt.c:2470 [bluetooth]remove_uuid_complete =_ "status 0x%02x\012"
    net/bluetooth/mgmt.c:2485 [bluetooth]remove_uuid =_ "request for %s\012"
    net/bluetooth/mgmt.c:2669 [bluetooth]load_link_keys =_ "%s debug_keys %u key_count %u\012"
    net/bluetooth/mgmt.c:2641 [bluetooth]load_link_keys =_ "request for %s\012"
    net/bluetooth/mgmt.c:5033 [bluetooth]load_long_term_keys =_ "%s key_count %u\012"
    net/bluetooth/mgmt.c:5011 [bluetooth]load_long_term_keys =_ "request for %s\012"
    net/bluetooth/mgmt.c:2847 [bluetooth]disconnect =_ "\012"
    net/bluetooth/mgmt.c:2929 [bluetooth]get_connections =_ "\012"
    net/bluetooth/mgmt.c:3006 [bluetooth]pin_code_reply =_ "\012"
    net/bluetooth/mgmt.c:3415 [bluetooth]pin_code_neg_reply =_ "\012"
    net/bluetooth/mgmt.c:3075 [bluetooth]set_io_capability =_ "%s IO capability set to 0x%02x\012"
    net/bluetooth/mgmt.c:3064 [bluetooth]set_io_capability =_ "\012"
    net/bluetooth/mgmt.c:3147 [bluetooth]pairing_complete_cb =_ "Unable to find a pending command\012"
    net/bluetooth/mgmt.c:3143 [bluetooth]pairing_complete_cb =_ "status %u\012"
    net/bluetooth/mgmt.c:3166 [bluetooth]le_pairing_complete_cb =_ "Unable to find a pending command\012"
    net/bluetooth/mgmt.c:3159 [bluetooth]le_pairing_complete_cb =_ "status %u\012"
    net/bluetooth/mgmt.c:3184 [bluetooth]pair_device =_ "\012"
    net/bluetooth/mgmt.c:3305 [bluetooth]cancel_pair_device =_ "\012"
    net/bluetooth/mgmt.c:3427 [bluetooth]user_confirm_reply =_ "\012"
    net/bluetooth/mgmt.c:3443 [bluetooth]user_confirm_neg_reply =_ "\012"
    net/bluetooth/mgmt.c:3455 [bluetooth]user_passkey_reply =_ "\012"
    net/bluetooth/mgmt.c:3467 [bluetooth]user_passkey_neg_reply =_ "\012"
    net/bluetooth/mgmt.c:3587 [bluetooth]read_local_oob_data =_ "%s\012"
    net/bluetooth/mgmt.c:3634 [bluetooth]add_remote_oob_data =_ "%s \012"
    net/bluetooth/mgmt.c:3709 [bluetooth]remove_remote_oob_data =_ "%s\012"
    net/bluetooth/mgmt.c:3893 [bluetooth]start_discovery =_ "%s\012"
    net/bluetooth/mgmt.c:4067 [bluetooth]stop_discovery_complete =_ "status %d\012"
    net/bluetooth/mgmt.c:4091 [bluetooth]stop_discovery =_ "%s\012"
    net/bluetooth/mgmt.c:4148 [bluetooth]confirm_name =_ "%s\012"
    net/bluetooth/mgmt.c:4190 [bluetooth]block_device =_ "%s\012"
    net/bluetooth/mgmt.c:4226 [bluetooth]unblock_device =_ "%s\012"
    net/bluetooth/mgmt.c:4263 [bluetooth]set_device_id =_ "%s\012"
    net/bluetooth/mgmt.c:4329 [bluetooth]set_advertising =_ "request for %s\012"
    net/bluetooth/mgmt.c:4598 [bluetooth]set_bredr_complete =_ "status 0x%02x\012"
    net/bluetooth/mgmt.c:4633 [bluetooth]set_bredr =_ "request for %s\012"
    net/bluetooth/mgmt.c:4406 [bluetooth]set_static_address =_ "%s\012"
    net/bluetooth/mgmt.c:4447 [bluetooth]set_scan_params =_ "%s\012"
    net/bluetooth/mgmt.c:4724 [bluetooth]set_secure_conn =_ "request for %s\012"
    net/bluetooth/mgmt.c:4809 [bluetooth]set_debug_keys =_ "request for %s\012"
    net/bluetooth/mgmt.c:4857 [bluetooth]set_privacy =_ "request for %s\012"
    net/bluetooth/mgmt.c:4946 [bluetooth]load_irks =_ "%s irk_count %u\012"
    net/bluetooth/mgmt.c:4925 [bluetooth]load_irks =_ "request for %s\012"
    net/bluetooth/mgmt.c:5126 [bluetooth]conn_info_refresh_complete =_ "status 0x%02x\012"
    net/bluetooth/mgmt.c:5179 [bluetooth]get_conn_info =_ "%s\012"
    include/net/bluetooth/hci_core.h:816 [bluetooth]hci_conn_hold =_ "hcon %p orig refcnt %d\012"
    include/net/bluetooth/hci_core.h:824 [bluetooth]hci_conn_drop =_ "hcon %p orig refcnt %d\012"
    net/bluetooth/mgmt.c:5327 [bluetooth]get_clock_info_complete =_ "%s status %u\012"
    net/bluetooth/mgmt.c:5364 [bluetooth]get_clock_info =_ "%s\012"
    net/bluetooth/mgmt.c:5447 [bluetooth]add_device =_ "%s\012"
    net/bluetooth/mgmt.c:5621 [bluetooth]remove_device =_ "All LE connection parameters were removed\012"
    net/bluetooth/mgmt.c:5532 [bluetooth]remove_device =_ "%s\012"
    net/bluetooth/mgmt.c:5695 [bluetooth]load_conn_param =_ "min 0x%04x max 0x%04x latency 0x%04x timeout 0x%04x\012"
    net/bluetooth/mgmt.c:5678 [bluetooth]load_conn_param =_ "Adding %pMR (type %u)\012"
    net/bluetooth/mgmt.c:5665 [bluetooth]load_conn_param =_ "%s param_count %u\012"
    net/bluetooth/mgmt.c:462 [bluetooth]read_unconf_index_list =_ "Added hci%u\012"
    net/bluetooth/mgmt.c:428 [bluetooth]read_unconf_index_list =_ "sock %p\012"
    net/bluetooth/mgmt.c:529 [bluetooth]read_config_info =_ "sock %p %s\012"
    net/bluetooth/mgmt.c:5727 [bluetooth]set_external_config =_ "%s\012"
    net/bluetooth/mgmt.c:5785 [bluetooth]set_public_address =_ "%s\012"
    net/bluetooth/mgmt.c:285 [bluetooth]cmd_complete =_ "sock %p\012"
    net/bluetooth/mgmt.c:3840 [bluetooth]start_discovery_complete =_ "status %d\012"
    net/bluetooth/mgmt.c:3966 [bluetooth]start_service_discovery =_ "%s\012"
    net/bluetooth/mgmt.c:5959 [bluetooth]mgmt_control =_ "Unknown op %u\012"
    net/bluetooth/mgmt.c:5907 [bluetooth]mgmt_control =_ "got %zu bytes\012"
    net/bluetooth/mgmt.c:863 [bluetooth]create_adv_data =_ "adv flags 0x%02x\012"
    net/bluetooth/hci_sock.c:461 [bluetooth]hci_sock_release =_ "sock %p sk %p\012"
    net/bluetooth/hci_sock.c:652 [bluetooth]hci_sock_bind =_ "sock %p sk %p\012"
    net/bluetooth/hci_sock.c:794 [bluetooth]hci_sock_getname =_ "sock %p sk %p\012"
    net/bluetooth/hci_sock.c:578 [bluetooth]hci_sock_ioctl =_ "cmd %x arg %lx\012"
    net/bluetooth/hci_sock.c:1026 [bluetooth]hci_sock_setsockopt =_ "sk %p, opt %d\012"
    net/bluetooth/hci_sock.c:1109 [bluetooth]hci_sock_getsockopt =_ "sk %p, opt %d\012"
    net/bluetooth/hci_sock.c:907 [bluetooth]hci_sock_sendmsg =_ "sock %p sk %p\012"
    net/bluetooth/hci_sock.c:862 [bluetooth]hci_sock_recvmsg =_ "sock %p, sk %p\012"
    net/bluetooth/hci_sock.c:1199 [bluetooth]hci_sock_create =_ "sock %p\012"
    include/net/bluetooth/hci_core.h:861 [bluetooth]hci_dev_put =_ "%s orig refcnt %d\012"
    net/bluetooth/hci_sock.c:298 [bluetooth]send_monitor_event =_ "len %d\012"
    net/bluetooth/hci_sock.c:417 [bluetooth]hci_sock_dev_event =_ "hdev %s event %d\012"
    net/bluetooth/hci_sock.c:229 [bluetooth]hci_send_to_monitor =_ "hdev %p len %d\012"
    net/bluetooth/hci_sock.c:191 [bluetooth]hci_send_to_control =_ "len %d\012"
    net/bluetooth/hci_sock.c:134 [bluetooth]hci_send_to_sock =_ "hdev %p len %d\012"
    include/net/bluetooth/hci_core.h:861 [bluetooth]hci_dev_put =_ "%s orig refcnt %d\012"
    include/net/bluetooth/hci_core.h:869 [bluetooth]hci_dev_hold =_ "%s orig refcnt %d\012"
    net/bluetooth/hci_sysfs.c:93 [bluetooth]hci_conn_add_sysfs =_ "conn %p\012"
    net/bluetooth/hci_sysfs.c:80 [bluetooth]hci_conn_init_sysfs =_ "conn %p\012"
    net/bluetooth/l2cap_core.c:1537 [bluetooth]l2cap_conn_unreliable =_ "conn %p\012"
    net/bluetooth/l2cap_core.c:7484 [bluetooth]l2cap_recv_acldata =_ "Cont: frag len %d (expecting %d)\012"
    net/bluetooth/l2cap_core.c:7464 [bluetooth]l2cap_recv_acldata =_ "Start: total len %d, frag len %d\012"
    net/bluetooth/l2cap_core.c:7434 [bluetooth]l2cap_recv_acldata =_ "conn %p len %d flags 0x%x\012"
    net/bluetooth/l2cap_core.c:7341 [bluetooth]l2cap_security_cfm =_ "chan %p scid 0x%4.4x state %s\012"
    net/bluetooth/l2cap_core.c:7333 [bluetooth]l2cap_security_cfm =_ "conn %p status 0x%2.2x encrypt %u\012"
    net/bluetooth/l2cap_core.c:7303 [bluetooth]l2cap_disconn_cfm =_ "hcon %p reason %d\012"
    net/bluetooth/l2cap_core.c:7294 [bluetooth]l2cap_disconn_ind =_ "hcon %p\012"
    net/bluetooth/l2cap_core.c:1463 [bluetooth]l2cap_le_conn_ready =_ "%s conn %p\012"
    net/bluetooth/l2cap_core.c:1496 [bluetooth]l2cap_conn_ready =_ "conn %p\012"
    net/bluetooth/l2cap_core.c:1651 [bluetooth]l2cap_conn_del =_ "hcon %p conn %p, err %d\012"
    net/bluetooth/l2cap_core.c:7238 [bluetooth]l2cap_connect_cfm =_ "hcon %p bdaddr %pMR status %d\012"
    net/bluetooth/l2cap_core.c:7171 [bluetooth]l2cap_connect_ind =_ "hdev %s, bdaddr %pMR\012"
    include/net/bluetooth/hci_core.h:861 [bluetooth]hci_dev_put =_ "%s orig refcnt %d\012"
    net/bluetooth/l2cap_core.c:6377 [bluetooth]l2cap_finish_move =_ "chan %p\012"
    net/bluetooth/l2cap_core.c:6396 [bluetooth]l2cap_rx_state_wait_p =_ "chan %p, control %p, skb %p, event %d\012"
    net/bluetooth/l2cap_core.c:2564 [bluetooth]l2cap_send_srej_tail =_ "chan %p\012"
    net/bluetooth/l2cap_core.c:2582 [bluetooth]l2cap_send_srej_list =_ "chan %p, txseq %u\012"
    net/bluetooth/l2cap_core.c:5895 [bluetooth]l2cap_rx_queued_iframes =_ "Searching for skb with txseq %d (queue len %d)\012"
    net/bluetooth/l2cap_core.c:5890 [bluetooth]l2cap_rx_queued_iframes =_ "chan %p\012"
    net/bluetooth/l2cap_core.c:6368 [bluetooth]l2cap_rx_state_srej_sent =_ "Freeing %p\012"
    net/bluetooth/l2cap_core.c:6292 [bluetooth]l2cap_rx_state_srej_sent =_ "Queued %p (queue len %d)\012"
    net/bluetooth/l2cap_core.c:6278 [bluetooth]l2cap_rx_state_srej_sent =_ "Queued %p (queue len %d)\012"
    net/bluetooth/l2cap_core.c:6263 [bluetooth]l2cap_rx_state_srej_sent =_ "Queued %p (queue len %d)\012"
    net/bluetooth/l2cap_core.c:6252 [bluetooth]l2cap_rx_state_srej_sent =_ "Queued %p (queue len %d)\012"
    net/bluetooth/l2cap_core.c:6241 [bluetooth]l2cap_rx_state_srej_sent =_ "chan %p, control %p, skb %p, event %d\012"
    net/bluetooth/l2cap_core.c:2008 [bluetooth]l2cap_retransmit =_ "chan %p, control %p\012"
    net/bluetooth/l2cap_core.c:2823 [bluetooth]l2cap_pass_to_tx_fbit =_ "chan %p, control %p\012"
    net/bluetooth/l2cap_core.c:5939 [bluetooth]l2cap_handle_srej =_ "Retry limit exceeded (%d)\012"
    net/bluetooth/l2cap_core.c:5934 [bluetooth]l2cap_handle_srej =_ "Seq %d not available for retransmission\012"
    net/bluetooth/l2cap_core.c:5925 [bluetooth]l2cap_handle_srej =_ "Invalid reqseq %d, disconnecting\012"
    net/bluetooth/l2cap_core.c:5922 [bluetooth]l2cap_handle_srej =_ "chan %p, control %p\012"
    net/bluetooth/l2cap_core.c:5992 [bluetooth]l2cap_handle_rej =_ "Retry limit exceeded (%d)\012"
    net/bluetooth/l2cap_core.c:5983 [bluetooth]l2cap_handle_rej =_ "Invalid reqseq %d, disconnecting\012"
    net/bluetooth/l2cap_core.c:5980 [bluetooth]l2cap_handle_rej =_ "chan %p, control %p\012"
    net/bluetooth/l2cap_core.c:5735 [bluetooth]l2cap_send_i_or_rr_or_rnr =_ "chan %p\012"
    net/bluetooth/l2cap_core.c:1999 [bluetooth]l2cap_ertm_resend =_ "Resent txseq %d\012"
    net/bluetooth/l2cap_core.c:1954 [bluetooth]l2cap_ertm_resend =_ "Retry limit exceeded (%d)\012"
    net/bluetooth/l2cap_core.c:1945 [bluetooth]l2cap_ertm_resend =_ "Error: Can't retransmit seq %d, frame missing\012"
    net/bluetooth/l2cap_core.c:1931 [bluetooth]l2cap_ertm_resend =_ "chan %p\012"
    net/bluetooth/l2cap_core.c:2019 [bluetooth]l2cap_retransmit_all =_ "chan %p, control %p\012"
    net/bluetooth/l2cap_core.c:2542 [bluetooth]l2cap_send_srej =_ "chan %p, txseq %u\012"
    net/bluetooth/l2cap_core.c:6225 [bluetooth]l2cap_rx_state_recv =_ "Freeing %p\012"
    net/bluetooth/l2cap_core.c:6162 [bluetooth]l2cap_rx_state_recv =_ "Queued %p (queue len %d)\012"
    net/bluetooth/l2cap_core.c:6151 [bluetooth]l2cap_rx_state_recv =_ "Busy, discarding unexpected seq %d\012"
    net/bluetooth/l2cap_core.c:6116 [bluetooth]l2cap_rx_state_recv =_ "Busy, discarding expected seq %d\012"
    net/bluetooth/l2cap_core.c:6106 [bluetooth]l2cap_rx_state_recv =_ "chan %p, control %p, skb %p, event %d\012"
    net/bluetooth/l2cap_core.c:6504 [bluetooth]l2cap_rx =_ "Invalid reqseq %d (next_tx_seq %d, expected_ack_seq %d\012"
    net/bluetooth/l2cap_core.c:6480 [bluetooth]l2cap_rx =_ "chan %p, control %p, skb %p, event %d, state %d\012"
    net/bluetooth/l2cap_core.c:2816 [bluetooth]l2cap_pass_to_tx =_ "chan %p, control %p\012"
    net/bluetooth/l2cap_core.c:6093 [bluetooth]l2cap_classify_txseq =_ "Unexpected - txseq indicates missing frames\012"
    net/bluetooth/l2cap_core.c:6089 [bluetooth]l2cap_classify_txseq =_ "Invalid - txseq outside tx window\012"
    net/bluetooth/l2cap_core.c:6086 [bluetooth]l2cap_classify_txseq =_ "Invalid/Ignore - txseq outside tx window\012"
    net/bluetooth/l2cap_core.c:6063 [bluetooth]l2cap_classify_txseq =_ "Duplicate - expected_tx_seq later than txseq\012"
    net/bluetooth/l2cap_core.c:6056 [bluetooth]l2cap_classify_txseq =_ "Expected\012"
    net/bluetooth/l2cap_core.c:6053 [bluetooth]l2cap_classify_txseq =_ "Invalid - txseq outside tx window\012"
    net/bluetooth/l2cap_core.c:6045 [bluetooth]l2cap_classify_txseq =_ "Unexpected SREJ - not requested\012"
    net/bluetooth/l2cap_core.c:6040 [bluetooth]l2cap_classify_txseq =_ "Duplicate SREJ - txseq already stored\012"
    net/bluetooth/l2cap_core.c:6035 [bluetooth]l2cap_classify_txseq =_ "Expected SREJ\012"
    net/bluetooth/l2cap_core.c:6029 [bluetooth]l2cap_classify_txseq =_ "Invalid - in window after SREJ sent\012"
    net/bluetooth/l2cap_core.c:6026 [bluetooth]l2cap_classify_txseq =_ "Invalid/Ignore - after SREJ\012"
    net/bluetooth/l2cap_core.c:6017 [bluetooth]l2cap_classify_txseq =_ "last_acked_seq %d, expected_tx_seq %d\012"
    net/bluetooth/l2cap_core.c:6014 [bluetooth]l2cap_classify_txseq =_ "chan %p, txseq %d\012"
    net/bluetooth/l2cap_core.c:6538 [bluetooth]l2cap_stream_rx =_ "Freeing %p\012"
    net/bluetooth/l2cap_core.c:6524 [bluetooth]l2cap_stream_rx =_ "buffer_seq %d->%d\012"
    net/bluetooth/l2cap_core.c:6517 [bluetooth]l2cap_stream_rx =_ "chan %p, control %p, skb %p, state %d\012"
    net/bluetooth/l2cap_core.c:6612 [bluetooth]l2cap_data_rcv =_ "sframe reqseq %d, final %d, poll %d, super %d\012"
    net/bluetooth/l2cap_core.c:6583 [bluetooth]l2cap_data_rcv =_ "iframe sar %d, reqseq %d, final %d, txseq %d\012"
    net/bluetooth/l2cap_core.c:6651 [bluetooth]l2cap_chan_le_send_credits =_ "chan %p returning %u credits to sender\012"
    net/bluetooth/l2cap_core.c:6717 [bluetooth]l2cap_le_data_rcv =_ "SDU fragment. chan->sdu->len %u skb->len %u chan->sdu_len %u\012"
    net/bluetooth/l2cap_core.c:6692 [bluetooth]l2cap_le_data_rcv =_ "Start of new SDU. sdu_len %u skb->len %u imtu %u\012"
    net/bluetooth/l2cap_core.c:6679 [bluetooth]l2cap_le_data_rcv =_ "rx_credits %u -> %u\012"
    net/bluetooth/l2cap_core.c:6809 [bluetooth]l2cap_data_channel =_ "chan %p: bad mode 0x%2.2x\012"
    net/bluetooth/l2cap_core.c:6776 [bluetooth]l2cap_data_channel =_ "chan %p, len %d\012"
    net/bluetooth/l2cap_core.c:6769 [bluetooth]l2cap_data_channel =_ "unknown cid 0x%4.4x\012"
    net/bluetooth/l2cap_core.c:5515 [bluetooth]l2cap_le_credits =_ "cid 0x%4.4x credits 0x%4.4x\012"
    net/bluetooth/l2cap_core.c:5406 [bluetooth]l2cap_le_connect_req =_ "psm 0x%2.2x scid 0x%4.4x mtu %u mps %u\012"
    net/bluetooth/l2cap_core.c:5244 [bluetooth]l2cap_le_connect_rsp =_ "dcid 0x%4.4x mtu %u mps %u credits %u result 0x%2.2x\012"
    net/bluetooth/l2cap_core.c:5194 [bluetooth]l2cap_conn_param_update_req =_ "min 0x%4.4x max 0x%4.4x latency: 0x%4.4x Timeout: 0x%4.4x\012"
    net/bluetooth/l2cap_core.c:5642 [bluetooth]l2cap_le_sig_channel =_ "corrupted command\012"
    net/bluetooth/l2cap_core.c:5639 [bluetooth]l2cap_le_sig_channel =_ "code 0x%2.2x len %d id 0x%2.2x\012"
    net/bluetooth/l2cap_core.c:6834 [bluetooth]l2cap_conless_channel =_ "chan %p, len %d\012"
    net/bluetooth/l2cap_core.c:5149 [bluetooth]l2cap_move_channel_confirm_rsp =_ "icid 0x%4.4x\012"
    net/bluetooth/l2cap_core.c:4572 [bluetooth]l2cap_send_move_chan_cfm_rsp =_ "icid 0x%4.4x\012"
    net/bluetooth/l2cap_core.c:5108 [bluetooth]l2cap_move_channel_confirm =_ "icid 0x%4.4x, result 0x%4.4x\012"
    net/bluetooth/l2cap_core.c:4558 [bluetooth]l2cap_send_move_chan_cfm_icid =_ "conn %p, icid 0x%4.4x\012"
    net/bluetooth/l2cap_core.c:5084 [bluetooth]l2cap_move_channel_rsp =_ "icid 0x%4.4x, result 0x%4.4x\012"
    net/bluetooth/l2cap_core.c:4869 [bluetooth]l2cap_move_channel_req =_ "icid 0x%4.4x, dest_amp_id %d\012"
    net/bluetooth/l2cap_core.c:4481 [bluetooth]l2cap_create_channel_req =_ "mgr %p bredr_chan %p hs_hcon %p\012"
    net/bluetooth/l2cap_core.c:4447 [bluetooth]l2cap_create_channel_req =_ "psm 0x%2.2x, scid 0x%4.4x, amp_id %d\012"
    net/bluetooth/l2cap_core.c:4378 [bluetooth]l2cap_information_rsp =_ "type 0x%4.4x result 0x%2.2x\012"
    net/bluetooth/l2cap_core.c:4326 [bluetooth]l2cap_information_req =_ "type 0x%4.4x\012"
    net/bluetooth/l2cap_core.c:4289 [bluetooth]l2cap_disconnect_rsp =_ "dcid 0x%4.4x scid 0x%4.4x\012"
    net/bluetooth/l2cap_core.c:4243 [bluetooth]l2cap_disconnect_req =_ "scid 0x%4.4x dcid 0x%4.4x\012"
    net/bluetooth/l2cap_core.c:3505 [bluetooth]l2cap_parse_conf_rsp =_ "chan %p, rsp %p, len %d, req %p\012"
    net/bluetooth/l2cap_core.c:3681 [bluetooth]l2cap_conf_rfc_get =_ "chan %p, rsp %p, len %d\012"
    net/bluetooth/l2cap_core.c:4134 [bluetooth]l2cap_config_rsp =_ "scid 0x%4.4x flags 0x%2.2x result 0x%2.2x len %d\012"
    net/bluetooth/l2cap_core.c:2952 [bluetooth]l2cap_get_conf_opt =_ "type 0x%2.2x len %u val 0x%lx\012"
    net/bluetooth/l2cap_core.c:3296 [bluetooth]l2cap_parse_conf_req =_ "chan %p\012"
    net/bluetooth/l2cap_core.c:4023 [bluetooth]l2cap_config_req =_ "dcid 0x%4.4x flags 0x%2.2x\012"
    net/bluetooth/l2cap_core.c:3914 [bluetooth]l2cap_connect_create_rsp =_ "dcid 0x%4.4x scid 0x%4.4x result 0x%2.2x status 0x%2.2x\012"
    net/bluetooth/l2cap_core.c:3753 [bluetooth]l2cap_connect =_ "psm 0x%2.2x scid 0x%4.4x\012"
    net/bluetooth/l2cap_core.c:1288 [bluetooth]l2cap_start_connection =_ "chan %p AMP capable: discover AMPs\012"
    net/bluetooth/l2cap_core.c:1385 [bluetooth]l2cap_conn_start =_ "conn %p\012"
    net/bluetooth/l2cap_core.c:2833 [bluetooth]l2cap_raw_recv =_ "conn %p\012"
    net/bluetooth/l2cap_core.c:5687 [bluetooth]l2cap_sig_channel =_ "corrupted command\012"
    net/bluetooth/l2cap_core.c:5684 [bluetooth]l2cap_sig_channel =_ "code 0x%2.2x len %d id 0x%2.2x\012"
    net/bluetooth/l2cap_core.c:6889 [bluetooth]l2cap_recv_frame =_ "len %d, cid 0x%4.4x\012"
    net/bluetooth/l2cap_core.c:6865 [bluetooth]l2cap_recv_frame =_ "queueing pending rx skb\012"
    net/bluetooth/l2cap_core.c:6918 [bluetooth]process_pending_rx =_ "\012"
    net/bluetooth/l2cap_core.c:6947 [bluetooth]l2cap_conn_add =_ "hcon %p conn %p hchan %p\012"
    net/bluetooth/l2cap_core.c:7011 [bluetooth]l2cap_chan_connect =_ "%pMR -> %pMR (type %u) psm 0x%2.2x\012"
    net/bluetooth/l2cap_core.c:4718 [bluetooth]l2cap_do_create =_ "chan %p state %s %u -> %u\012"
    net/bluetooth/l2cap_core.c:4827 [bluetooth]__l2cap_physical_cfm =_ "chan %p, result %d, local_amp_id %d, remote_amp_id %d\012"
    net/bluetooth/l2cap_core.c:4510 [bluetooth]l2cap_send_move_chan_req =_ "chan %p, dest_amp_id %d\012"
    net/bluetooth/l2cap_core.c:1182 [bluetooth]l2cap_move_setup =_ "chan %p\012"
    net/bluetooth/l2cap_core.c:4697 [bluetooth]l2cap_move_start =_ "chan %p\012"
    net/bluetooth/l2cap_core.c:4646 [bluetooth]l2cap_logical_finish_move =_ "move_state %d\012"
    net/bluetooth/l2cap_core.c:3610 [bluetooth]l2cap_build_conf_rsp =_ "chan %p\012"
    net/bluetooth/l2cap_core.c:3985 [bluetooth]l2cap_send_efs_conf_rsp =_ "conn %p chan %p ident %d flags 0x%4.4x\012"
    net/bluetooth/l2cap_core.c:4541 [bluetooth]l2cap_send_move_chan_cfm =_ "chan %p, result 0x%4.4x\012"
    net/bluetooth/l2cap_core.c:1216 [bluetooth]l2cap_move_done =_ "chan %p\012"
    net/bluetooth/l2cap_core.c:4528 [bluetooth]l2cap_send_move_chan_rsp =_ "chan %p, result 0x%4.4x\012"
    net/bluetooth/l2cap_core.c:4678 [bluetooth]l2cap_logical_cfm =_ "chan %p, hchan %p, status %d\012"
    net/bluetooth/l2cap_core.c:2960 [bluetooth]l2cap_add_conf_opt =_ "type 0x%2.2x len %u val 0x%lx\012"
    net/bluetooth/l2cap_core.c:3167 [bluetooth]l2cap_build_conf_req =_ "chan %p\012"
    net/bluetooth/l2cap_core.c:3653 [bluetooth]__l2cap_connect_rsp_defer =_ "chan %p rsp_code %u\012"
    net/bluetooth/l2cap_core.c:3624 [bluetooth]__l2cap_le_connect_rsp_defer =_ "chan %p\012"
    net/bluetooth/l2cap_core.c:1800 [bluetooth]l2cap_retrans_timeout =_ "chan %p\012"
    net/bluetooth/l2cap_core.c:1779 [bluetooth]l2cap_monitor_timeout =_ "chan %p\012"
    net/bluetooth/l2cap_core.c:3023 [bluetooth]l2cap_ack_timeout =_ "chan %p\012"
    net/bluetooth/l2cap_core.c:1847 [bluetooth]l2cap_streaming_send =_ "Sent txseq %u\012"
    net/bluetooth/l2cap_core.c:1821 [bluetooth]l2cap_streaming_send =_ "chan %p, skbs %p\012"
    net/bluetooth/l2cap_core.c:2774 [bluetooth]l2cap_tx_state_wait_f =_ "recv fbit tx_state 0x2.2%x\012"
    net/bluetooth/l2cap_core.c:2745 [bluetooth]l2cap_tx_state_wait_f =_ "Exit LOCAL_BUSY\012"
    net/bluetooth/l2cap_core.c:2731 [bluetooth]l2cap_tx_state_wait_f =_ "Enter LOCAL_BUSY\012"
    net/bluetooth/l2cap_core.c:2721 [bluetooth]l2cap_tx_state_wait_f =_ "chan %p, control %p, skbs %p, event %d\012"
    net/bluetooth/l2cap_core.c:1093 [bluetooth]l2cap_send_rr_or_rnr =_ "chan %p, poll %d\012"
    net/bluetooth/l2cap_core.c:2631 [bluetooth]l2cap_process_reqseq =_ "unacked_frames %u\012"
    net/bluetooth/l2cap_core.c:2613 [bluetooth]l2cap_process_reqseq =_ "expected_ack_seq %u, unacked_frames %u\012"
    net/bluetooth/l2cap_core.c:2607 [bluetooth]l2cap_process_reqseq =_ "chan %p, reqseq %u\012"
    net/bluetooth/l2cap_core.c:1077 [bluetooth]l2cap_send_sframe =_ "reqseq %d, final %d, poll %d, super %d\012"
    net/bluetooth/l2cap_core.c:1054 [bluetooth]l2cap_send_sframe =_ "chan %p, control %p\012"
    net/bluetooth/l2cap_core.c:2083 [bluetooth]l2cap_send_ack =_ "frames_to_ack %u, threshold %d\012"
    net/bluetooth/l2cap_core.c:2056 [bluetooth]l2cap_send_ack =_ "chan %p last_acked_seq %d buffer_seq %d\012"
    net/bluetooth/l2cap_core.c:2636 [bluetooth]l2cap_abort_rx_srej_sent =_ "chan %p\012"
    net/bluetooth/l2cap_core.c:1919 [bluetooth]l2cap_ertm_send =_ "Sent %d, %u unacked, %u in ERTM queue\012"
    net/bluetooth/l2cap_core.c:1915 [bluetooth]l2cap_ertm_send =_ "Sent txseq %u\012"
    net/bluetooth/l2cap_core.c:1860 [bluetooth]l2cap_ertm_send =_ "chan %p\012"
    net/bluetooth/l2cap_core.c:2674 [bluetooth]l2cap_tx_state_xmit =_ "Exit LOCAL_BUSY\012"
    net/bluetooth/l2cap_core.c:2660 [bluetooth]l2cap_tx_state_xmit =_ "Enter LOCAL_BUSY\012"
    net/bluetooth/l2cap_core.c:2649 [bluetooth]l2cap_tx_state_xmit =_ "chan %p, control %p, skbs %p, event %d\012"
    net/bluetooth/l2cap_core.c:2798 [bluetooth]l2cap_tx =_ "chan %p, control %p, skbs %p, event %d, state %d\012"
    net/bluetooth/l2cap_core.c:2213 [bluetooth]l2cap_create_iframe_pdu =_ "chan %p len %zu\012"
    net/bluetooth/l2cap_core.c:2267 [bluetooth]l2cap_segment_sdu =_ "chan %p, msg %p, len %zu\012"
    net/bluetooth/l2cap_core.c:868 [bluetooth]l2cap_do_send =_ "chan %p, skb %p len %d priority %u\012"
    net/bluetooth/l2cap_core.c:2182 [bluetooth]l2cap_create_basic_pdu =_ "chan %p len %zu\012"
    net/bluetooth/l2cap_core.c:2334 [bluetooth]l2cap_create_le_flowctl_pdu =_ "chan %p len %zu\012"
    net/bluetooth/l2cap_core.c:2376 [bluetooth]l2cap_segment_le_sdu =_ "chan %p, msg %p, len %zu\012"
    net/bluetooth/l2cap_core.c:2151 [bluetooth]l2cap_create_connless_pdu =_ "chan %p psm 0x%2.2x len %zu\012"
    net/bluetooth/l2cap_core.c:2529 [bluetooth]l2cap_chan_send =_ "bad state %1.1x\012"
    net/bluetooth/l2cap_core.c:2865 [bluetooth]l2cap_build_cmd =_ "conn %p, code 0x%2.2x, ident 0x%2.2x, len %u\012"
    net/bluetooth/l2cap_core.c:837 [bluetooth]l2cap_send_cmd =_ "code 0x%2.2x\012"
    net/bluetooth/l2cap_core.c:243 [bluetooth]l2cap_state_change =_ "chan %p %s -> %s\012"
    include/net/bluetooth/l2cap.h:804 [bluetooth]l2cap_set_timer =_ "chan %p state %s timeout %ld\012"
    net/bluetooth/l2cap_core.c:704 [bluetooth]l2cap_chan_close =_ "chan %p state %s\012"
    include/net/bluetooth/hci_core.h:824 [bluetooth]hci_conn_drop =_ "hcon %p orig refcnt %d\012"
    net/bluetooth/l2cap_core.c:601 [bluetooth]l2cap_chan_del =_ "chan %p disconnect hs_hchan %p\012"
    net/bluetooth/l2cap_core.c:573 [bluetooth]l2cap_chan_del =_ "chan %p, conn %p, err %d, state %s\012"
    include/net/bluetooth/hci_core.h:816 [bluetooth]hci_conn_hold =_ "hcon %p orig refcnt %d\012"
    net/bluetooth/l2cap_core.c:510 [bluetooth]__l2cap_chan_add =_ "conn %p, psm 0x%2.2x, dcid 0x%4.4x\012"
    net/bluetooth/l2cap_core.c:452 [bluetooth]l2cap_chan_destroy =_ "chan %p\012"
    net/bluetooth/l2cap_core.c:470 [bluetooth]l2cap_chan_put =_ "chan %p orig refcnt %d\012"
    net/bluetooth/l2cap_core.c:463 [bluetooth]l2cap_chan_hold =_ "chan %p orig refcnt %d\012"
    net/bluetooth/l2cap_core.c:393 [bluetooth]l2cap_chan_timeout =_ "chan %p state %s\012"
    net/bluetooth/l2cap_core.c:442 [bluetooth]l2cap_chan_create =_ "chan %p\012"
    net/bluetooth/l2cap_sock.c:1191 [bluetooth]l2cap_sock_new_connection_cb =_ "backlog full %d\012"
    net/bluetooth/l2cap_sock.c:1172 [bluetooth]l2cap_sock_cleanup_listen =_ "child chan %p state %s\012"
    net/bluetooth/l2cap_sock.c:1165 [bluetooth]l2cap_sock_cleanup_listen =_ "parent %p state %s\012"
    net/bluetooth/l2cap_sock.c:1261 [bluetooth]l2cap_sock_teardown_cb =_ "chan %p state %s\012"
    net/bluetooth/l2cap_sock.c:1348 [bluetooth]l2cap_sock_ready_cb =_ "sk %p, parent %p\012"
    net/bluetooth/l2cap_sock.c:1458 [bluetooth]l2cap_sock_init =_ "sk %p\012"
    net/bluetooth/l2cap_sock.c:1427 [bluetooth]l2cap_sock_destruct =_ "sk %p\012"
    net/bluetooth/l2cap_sock.c:1565 [bluetooth]l2cap_sock_create =_ "sock %p\012"
    net/bluetooth/l2cap_sock.c:1049 [bluetooth]l2cap_sock_kill =_ "sk %p state %s\012"
    net/bluetooth/l2cap_sock.c:1146 [bluetooth]l2cap_sock_release =_ "sock %p, sk %p\012"
    net/bluetooth/l2cap_sock.c:87 [bluetooth]l2cap_sock_bind =_ "sk %p\012"
    net/bluetooth/l2cap_sock.c:181 [bluetooth]l2cap_sock_connect =_ "sk %p\012"
    net/bluetooth/l2cap_sock.c:352 [bluetooth]l2cap_sock_accept =_ "new socket %p\012"
    net/bluetooth/l2cap_sock.c:314 [bluetooth]l2cap_sock_accept =_ "sk %p timeo %ld\012"
    net/bluetooth/l2cap_sock.c:366 [bluetooth]l2cap_sock_getname =_ "sock %p, sk %p\012"
    net/bluetooth/l2cap_sock.c:257 [bluetooth]l2cap_sock_listen =_ "sk %p backlog %d\012"
    net/bluetooth/l2cap_sock.c:1105 [bluetooth]l2cap_sock_shutdown =_ "chan %p state %s\012"
    net/bluetooth/l2cap_sock.c:1097 [bluetooth]l2cap_sock_shutdown =_ "sock %p, sk %p\012"
    net/bluetooth/l2cap_sock.c:640 [bluetooth]l2cap_sock_setsockopt_old =_ "sk %p\012"
    net/bluetooth/l2cap_sock.c:754 [bluetooth]l2cap_sock_setsockopt =_ "sk %p\012"
    net/bluetooth/l2cap_sock.c:402 [bluetooth]l2cap_sock_getsockopt_old =_ "sk %p\012"
    net/bluetooth/l2cap_sock.c:504 [bluetooth]l2cap_sock_getsockopt =_ "sk %p\012"
    net/bluetooth/l2cap_sock.c:955 [bluetooth]l2cap_sock_sendmsg =_ "sock %p, sk %p\012"
    net/bluetooth/smp.c:2971 [bluetooth]smp_del_chan =_ "chan %p\012"
    net/bluetooth/smp.c:2585 [bluetooth]smp_cmd_keypress_notify =_ "value 0x%02x\012"
    net/bluetooth/smp.c:2527 [bluetooth]smp_cmd_dhkey_check =_ "conn %p\012"
    net/bluetooth/smp.c:2444 [bluetooth]smp_cmd_public_key =_ "%s selected method 0x%02x\012"
    net/bluetooth/smp.c:2416 [bluetooth]smp_cmd_public_key =_ "conn %p\012"
    net/bluetooth/smp.c:2341 [bluetooth]smp_cmd_sign_info =_ "conn %p\012"
    net/bluetooth/smp.c:2287 [bluetooth]smp_cmd_ident_addr_info =_ "\012"
    net/bluetooth/smp.c:2264 [bluetooth]smp_cmd_ident_info =_ "\012"
    net/bluetooth/smp.c:2232 [bluetooth]smp_cmd_master_ident =_ "conn %p\012"
    net/bluetooth/smp.c:2208 [bluetooth]smp_cmd_encrypt_info =_ "conn %p\012"
    net/bluetooth/smp.c:898 [bluetooth]smp_random =_ "conn %p %s\012"
    net/bluetooth/smp.c:1939 [bluetooth]smp_cmd_pairing_random =_ "conn %p\012"
    net/bluetooth/smp.c:1881 [bluetooth]sc_check_confirm =_ "\012"
    net/bluetooth/smp.c:1904 [bluetooth]smp_cmd_pairing_confirm =_ "conn %p %s\012"
    net/bluetooth/smp.c:2074 [bluetooth]smp_cmd_security_req =_ "conn %p\012"
    net/bluetooth/smp.c:1760 [bluetooth]sc_send_public_key =_ "Using debug keys\012"
    net/bluetooth/smp.c:1757 [bluetooth]sc_send_public_key =_ "\012"
    net/bluetooth/smp.c:1796 [bluetooth]smp_cmd_pairing_rsp =_ "conn %p\012"
    net/bluetooth/smp.c:842 [bluetooth]tk_request =_ "PassKey: %d\012"
    net/bluetooth/smp.c:790 [bluetooth]tk_request =_ "tk_request: auth:%d lcl:%d rem:%d\012"
    net/bluetooth/smp.c:1643 [bluetooth]smp_cmd_pairing_req =_ "conn %p\012"
    net/bluetooth/smp.c:2682 [bluetooth]smp_sig_channel =_ "Unknown command code 0x%2.2x\012"
    net/bluetooth/smp.c:2826 [bluetooth]smp_recv_cb =_ "chan %p\012"
    net/bluetooth/smp.c:2707 [bluetooth]smp_teardown_cb =_ "chan %p\012"
    net/bluetooth/smp.c:2813 [bluetooth]smp_ready_cb =_ "chan %p\012"
    net/bluetooth/smp.c:1191 [bluetooth]smp_distribute_keys =_ "keydist 0x%x\012"
    net/bluetooth/smp.c:1161 [bluetooth]smp_distribute_keys =_ "conn %p\012"
    net/bluetooth/smp.c:2772 [bluetooth]bredr_pairing =_ "%s starting SMP over BR/EDR\012"
    net/bluetooth/smp.c:2724 [bluetooth]bredr_pairing =_ "chan %p\012"
    net/bluetooth/smp.c:2790 [bluetooth]smp_resume_cb =_ "chan %p\012"
    net/bluetooth/smp.c:2899 [bluetooth]smp_new_conn_cb =_ "created chan %p\012"
    net/bluetooth/smp.c:2878 [bluetooth]smp_new_conn_cb =_ "pchan %p\012"
    net/bluetooth/smp.c:2986 [bluetooth]smp_register =_ "%s\012"
    include/net/bluetooth/hci_core.h:816 [bluetooth]hci_conn_hold =_ "hcon %p orig refcnt %d\012"
    net/bluetooth/smp.c:1281 [bluetooth]smp_timeout =_ "conn %p\012"
    net/bluetooth/smp.c:2131 [bluetooth]smp_conn_security =_ "conn %p hcon %p level 0x%2.2x\012"
    include/net/bluetooth/hci_core.h:824 [bluetooth]hci_conn_drop =_ "hcon %p orig refcnt %d\012"
    net/bluetooth/smp.c:867 [bluetooth]smp_confirm =_ "conn %p\012"
    net/bluetooth/smp.c:301 [bluetooth]smp_f6 =_ "res %16phN\012"
    net/bluetooth/smp.c:532 [bluetooth]smp_send_cmd =_ "code 0x%2.2x\012"
    net/bluetooth/smp.c:1477 [bluetooth]sc_passkey_round =_ "%s Starting passkey round %u\012"
    net/bluetooth/smp.c:1563 [bluetooth]smp_user_confirm_reply =_ "PassKey: %d\012"
    net/bluetooth/smp.c:1537 [bluetooth]smp_user_confirm_reply =_ "\012"
    net/bluetooth/smp.c:517 [bluetooth]smp_generate_rpa =_ "RPA %pMR\012"
    net/bluetooth/smp.c:488 [bluetooth]smp_irk_matches =_ "RPA %pMR IRK %*phN\012"
    net/bluetooth/sco.c:987 [bluetooth]sco_sock_release =_ "sock %p, sk %p\012"
    net/bluetooth/sco.c:518 [bluetooth]sco_sock_bind =_ "sk %p %pMR\012"
    include/net/bluetooth/hci_core.h:861 [bluetooth]hci_dev_put =_ "%s orig refcnt %d\012"
    net/bluetooth/sco.c:218 [bluetooth]sco_connect =_ "%pMR -> %pMR\012"
    net/bluetooth/sco.c:550 [bluetooth]sco_sock_connect =_ "sk %p\012"
    net/bluetooth/sco.c:668 [bluetooth]sco_sock_accept =_ "new socket %p\012"
    net/bluetooth/sco.c:630 [bluetooth]sco_sock_accept =_ "sk %p timeo %ld\012"
    net/bluetooth/sco.c:680 [bluetooth]sco_sock_getname =_ "sock %p, sk %p\012"
    net/bluetooth/sco.c:585 [bluetooth]sco_sock_listen =_ "sk %p backlog %d\012"
    net/bluetooth/sco.c:92 [bluetooth]sco_sock_set_timer =_ "sock %p state %d timeout %ld\012"
    net/bluetooth/sco.c:376 [bluetooth]sco_sock_cleanup_listen =_ "parent %p\012"
    net/bluetooth/sco.c:406 [bluetooth]__sco_sock_close =_ "sk %p state %d socket %p\012"
    net/bluetooth/sco.c:962 [bluetooth]sco_sock_shutdown =_ "sock %p, sk %p\012"
    net/bluetooth/sco.c:792 [bluetooth]sco_sock_setsockopt =_ "sk %p\012"
    net/bluetooth/sco.c:874 [bluetooth]sco_sock_getsockopt_old =_ "mtu %d\012"
    net/bluetooth/sco.c:856 [bluetooth]sco_sock_getsockopt_old =_ "sk %p\012"
    net/bluetooth/sco.c:915 [bluetooth]sco_sock_getsockopt =_ "sk %p\012"
    net/bluetooth/sco.c:282 [bluetooth]sco_send_frame =_ "sk %p len %d\012"
    net/bluetooth/sco.c:699 [bluetooth]sco_sock_sendmsg =_ "sock %p, sk %p\012"
    net/bluetooth/sco.c:723 [bluetooth]sco_conn_defer_accept =_ "conn %p\012"
    net/bluetooth/sco.c:495 [bluetooth]sco_sock_create =_ "sock %p\012"
    net/bluetooth/sco.c:309 [bluetooth]sco_recv_frame =_ "sk %p len %d\012"
    net/bluetooth/sco.c:1115 [bluetooth]sco_recv_scodata =_ "conn %p len %d\012"
    net/bluetooth/sco.c:1103 [bluetooth]sco_disconn_cfm =_ "hcon %p reason %d\012"
    include/net/bluetooth/hci_core.h:824 [bluetooth]hci_conn_drop =_ "hcon %p orig refcnt %d\012"
    net/bluetooth/sco.c:138 [bluetooth]sco_chan_del =_ "sk %p, conn %p, err %d\012"
    net/bluetooth/sco.c:165 [bluetooth]sco_conn_del =_ "hcon %p conn %p, err %d\012"
    net/bluetooth/sco.c:187 [bluetooth]__sco_chan_add =_ "conn %p\012"
    include/net/bluetooth/hci_core.h:816 [bluetooth]hci_conn_hold =_ "hcon %p orig refcnt %d\012"
    net/bluetooth/sco.c:448 [bluetooth]sco_sock_init =_ "sk %p\012"
    net/bluetooth/sco.c:366 [bluetooth]sco_sock_destruct =_ "sk %p\012"
    net/bluetooth/sco.c:396 [bluetooth]sco_sock_kill =_ "sk %p state %d\012"
    net/bluetooth/sco.c:79 [bluetooth]sco_sock_timeout =_ "sock %p state %d\012"
    net/bluetooth/sco.c:98 [bluetooth]sco_sock_clear_timer =_ "sock %p state %d\012"
    net/bluetooth/sco.c:1011 [bluetooth]sco_conn_ready =_ "conn %p\012"
    net/bluetooth/sco.c:125 [bluetooth]sco_conn_add =_ "hcon %p conn %p\012"
    net/bluetooth/sco.c:1090 [bluetooth]sco_connect_cfm =_ "hcon %p bdaddr %pMR status %d\012"
    net/bluetooth/sco.c:1066 [bluetooth]sco_connect_ind =_ "hdev %s, bdaddr %pMR\012"
    net/bluetooth/a2mp.c:1010 [bluetooth]a2mp_discover_amp =_ "chan %p conn %p mgr %p\012"
    net/bluetooth/a2mp.c:997 [bluetooth]a2mp_send_create_phy_link_rsp =_ "%s mgr %p hs_hcon %p status %u\012"
    net/bluetooth/a2mp.c:955 [bluetooth]a2mp_send_create_phy_link_req =_ "%s mgr %p assoc_len %zu\012"
    net/bluetooth/a2mp.c:918 [bluetooth]a2mp_send_getampassoc_rsp =_ "%s mgr %p\012"
    net/bluetooth/a2mp.c:889 [bluetooth]a2mp_send_getinfo_rsp =_ "%s mgr %p\012"
    net/bluetooth/a2mp.c:562 [bluetooth]a2mp_cmd_rsp =_ "ident %d code 0x%2.2x\012"
    net/bluetooth/a2mp.c:424 [bluetooth]a2mp_getampassoc_rsp =_ "Created hcon %p: loc:%d -> rem:%d\012"
    net/bluetooth/a2mp.c:391 [bluetooth]a2mp_getampassoc_rsp =_ "id %d status 0x%2.2x assoc len %zu\012"
    net/bluetooth/a2mp.c:315 [bluetooth]a2mp_getinfo_rsp =_ "id %d status 0x%2.2x\012"
    net/bluetooth/a2mp.c:235 [bluetooth]a2mp_discover_rsp =_ "chan %p state %s\012"
    net/bluetooth/a2mp.c:210 [bluetooth]a2mp_discover_rsp =_ "Remote AMP id %d type %d status %d\012"
    net/bluetooth/a2mp.c:202 [bluetooth]a2mp_discover_rsp =_ "efm 0x%4.4x\012"
    net/bluetooth/a2mp.c:194 [bluetooth]a2mp_discover_rsp =_ "mtu %d efm 0x%4.4x\012"
    net/bluetooth/a2mp.c:527 [bluetooth]a2mp_discphyslink_req =_ "local_id %d remote_id %d\012"
    net/bluetooth/a2mp.c:449 [bluetooth]a2mp_createphyslink_req =_ "local_id %d, remote_id %d\012"
    net/bluetooth/a2mp.c:342 [bluetooth]a2mp_getampassoc_req =_ "id %d\012"
    include/net/bluetooth/hci_core.h:861 [bluetooth]hci_dev_put =_ "%s orig refcnt %d\012"
    net/bluetooth/a2mp.c:279 [bluetooth]a2mp_getinfo_req =_ "id %d\012"
    net/bluetooth/a2mp.c:261 [bluetooth]a2mp_change_notify =_ "Controller id %d type %d status %d\012"
    net/bluetooth/a2mp.c:142 [bluetooth]a2mp_discover_req =_ "efm 0x%4.4x\012"
    net/bluetooth/a2mp.c:134 [bluetooth]a2mp_discover_req =_ "mtu %d efm 0x%4.4x\012"
    net/bluetooth/a2mp.c:110 [bluetooth]a2mp_command_rej =_ "ident %d reason %d\012"
    net/bluetooth/a2mp.c:654 [bluetooth]a2mp_chan_recv_cb =_ "Send A2MP Rej: cmd 0x%2.2x err %d\012"
    net/bluetooth/a2mp.c:583 [bluetooth]a2mp_chan_recv_cb =_ "code 0x%2.2x id %d len %u\012"
    net/bluetooth/a2mp.c:682 [bluetooth]a2mp_chan_state_change_cb =_ "chan %p state %s\012"
    net/bluetooth/a2mp.c:733 [bluetooth]a2mp_chan_open =_ "chan %p\012"
    net/bluetooth/a2mp.c:816 [bluetooth]amp_mgr_create =_ "conn %p mgr %p\012"
    net/bluetooth/a2mp.c:858 [bluetooth]a2mp_channel_create =_ "mgr: %p chan %p\012"
    net/bluetooth/a2mp.c:790 [bluetooth]amp_mgr_destroy =_ "mgr %p\012"
    net/bluetooth/a2mp.c:802 [bluetooth]amp_mgr_put =_ "mgr %p orig refcnt %d\012"
    net/bluetooth/a2mp.c:779 [bluetooth]amp_mgr_get =_ "mgr %p orig refcnt %d\012"
    net/bluetooth/amp.c:471 [bluetooth]amp_destroy_logical_link =_ "hchan %p\012"
    net/bluetooth/amp.c:461 [bluetooth]amp_disconnect_logical_link =_ "hchan %p not connected\012"
    net/bluetooth/amp.c:420 [bluetooth]amp_create_logical_link =_ "chan %p hs_hcon %p dst %pMR\012"
    include/net/bluetooth/hci_core.h:861 [bluetooth]hci_dev_put =_ "%s orig refcnt %d\012"
    include/net/bluetooth/hci_core.h:869 [bluetooth]hci_dev_hold =_ "%s orig refcnt %d\012"
    net/bluetooth/amp.c:391 [bluetooth]amp_physical_cfm =_ "bredr_hcon %p hs_hcon %p mgr %p\012"
    net/bluetooth/amp.c:378 [bluetooth]amp_accept_phylink =_ "Cannot create link key\012"
    net/bluetooth/amp.c:374 [bluetooth]amp_accept_phylink =_ "%s hcon %p phy handle 0x%2.2x\012"
    net/bluetooth/amp.c:359 [bluetooth]amp_create_phylink =_ "Cannot create link key\012"
    net/bluetooth/amp.c:355 [bluetooth]amp_create_phylink =_ "%s hcon %p phy handle 0x%2.2x\012"
    net/bluetooth/amp.c:342 [bluetooth]amp_write_remote_assoc =_ "%s phy handle 0x%2.2x hcon %p\012"
    net/bluetooth/amp.c:336 [bluetooth]amp_write_remote_assoc =_ "%s phy handle 0x%2.2x\012"
    net/bluetooth/amp.c:298 [bluetooth]amp_write_rem_assoc_frag =_ "hcon %p ctrl %p frag_len %u assoc_len %u rem_len %u\012"
    net/bluetooth/amp.c:280 [bluetooth]amp_write_rem_assoc_frag =_ "all fragments are written\012"
    net/bluetooth/amp.c:321 [bluetooth]amp_write_rem_assoc_continue =_ "%s phy handle 0x%2.2x\012"
    net/bluetooth/amp.c:228 [bluetooth]amp_read_loc_assoc_frag =_ "%s handle %d\012"
    net/bluetooth/amp.c:151 [bluetooth]hmac_sha256 =_ "crypto_ahash_setkey failed: err %d\012"
    net/bluetooth/amp.c:145 [bluetooth]hmac_sha256 =_ "crypto_alloc_ahash failed: err %ld\012"
    net/bluetooth/amp.c:214 [bluetooth]phylink_gen_key =_ "Use Generic AMP Key (gamp)\012"
    net/bluetooth/amp.c:198 [bluetooth]phylink_gen_key =_ "No Link key for conn %p dst %pMR\012"
    net/bluetooth/amp.c:185 [bluetooth]phylink_gen_key =_ "conn %p key_type %d\012"
    net/bluetooth/amp.c:122 [bluetooth]phylink_add =_ "hcon %p dst %pMR\012"
    net/bluetooth/amp.c:87 [bluetooth]amp_ctrl_lookup =_ "mgr %p id %d\012"
    net/bluetooth/amp.c:73 [bluetooth]amp_ctrl_list_flush =_ "mgr %p\012"
    net/bluetooth/amp.c:64 [bluetooth]amp_ctrl_add =_ "mgr %p ctrl %p\012"
    net/bluetooth/amp.c:35 [bluetooth]amp_ctrl_destroy =_ "ctrl %p\012"
    net/bluetooth/amp.c:44 [bluetooth]amp_ctrl_put =_ "ctrl %p orig refcnt %d\012"
    net/bluetooth/amp.c:26 [bluetooth]amp_ctrl_get =_ "ctrl %p orig refcnt %d\012"
    net/bluetooth/rfcomm/core.c:2119 [rfcomm]rfcomm_security_cfm =_ "conn %p status 0x%02x encrypt 0x%02x\012"
    net/bluetooth/rfcomm/core.c:2081 [rfcomm]rfcomm_kill_listener =_ "\012"
    net/bluetooth/rfcomm/core.c:1135 [rfcomm]rfcomm_send_credits =_ "%p addr %d credits %d\012"
    net/bluetooth/rfcomm/core.c:1802 [rfcomm]rfcomm_process_tx =_ "dlc %p state %ld cfc %d rx_credits %d tx_credits %d\012"
    net/bluetooth/rfcomm/core.c:1849 [rfcomm]rfcomm_process_dlcs =_ "session %p state %ld\012"
    net/bluetooth/rfcomm/core.c:901 [rfcomm]rfcomm_send_nsc =_ "%p cr %d type %d\012"
    net/bluetooth/rfcomm/core.c:1108 [rfcomm]rfcomm_send_test =_ "%p cr %d\012"
    net/bluetooth/rfcomm/core.c:1082 [rfcomm]rfcomm_send_fcon =_ "%p cr %d\012"
    net/bluetooth/rfcomm/core.c:1060 [rfcomm]rfcomm_send_fcoff =_ "%p cr %d\012"
    net/bluetooth/rfcomm/core.c:1581 [rfcomm]rfcomm_recv_msc =_ "dlci %d cr %d v24 0x%x\012"
    net/bluetooth/rfcomm/core.c:1007 [rfcomm]rfcomm_send_rls =_ "%p cr %d status 0x%x\012"
    net/bluetooth/rfcomm/core.c:1561 [rfcomm]rfcomm_recv_rls =_ "dlci %d cr %d status 0x%x\012"
    net/bluetooth/rfcomm/core.c:1543 [rfcomm]rfcomm_recv_rpn =_ "RPN XOFF char mismatch 0x%x\012"
    net/bluetooth/rfcomm/core.c:1534 [rfcomm]rfcomm_recv_rpn =_ "RPN XON char mismatch 0x%x\012"
    net/bluetooth/rfcomm/core.c:1525 [rfcomm]rfcomm_recv_rpn =_ "RPN flow ctrl mismatch 0x%x\012"
    net/bluetooth/rfcomm/core.c:1516 [rfcomm]rfcomm_recv_rpn =_ "RPN parity mismatch 0x%x\012"
    net/bluetooth/rfcomm/core.c:1507 [rfcomm]rfcomm_recv_rpn =_ "RPN stop bits mismatch 0x%x\012"
    net/bluetooth/rfcomm/core.c:1498 [rfcomm]rfcomm_recv_rpn =_ "RPN data bits mismatch 0x%x\012"
    net/bluetooth/rfcomm/core.c:1489 [rfcomm]rfcomm_recv_rpn =_ "RPN bit rate mismatch 0x%x\012"
    net/bluetooth/rfcomm/core.c:1466 [rfcomm]rfcomm_recv_rpn =_ "dlci %d cr %d len 0x%x bitr 0x%x line 0x%x flow 0x%x xonc 0x%x xoffc 0x%x pm 0x%x\012"
    net/bluetooth/rfcomm/core.c:1374 [rfcomm]rfcomm_apply_pn =_ "dlc %p state %ld dlci %d mtu %d fc 0x%x credits %d\012"
    net/bluetooth/rfcomm/core.c:1404 [rfcomm]rfcomm_recv_pn =_ "session %p state %ld dlci %d\012"
    net/bluetooth/rfcomm/core.c:1620 [rfcomm]rfcomm_recv_mcc =_ "%p type 0x%x cr %d\012"
    net/bluetooth/rfcomm/core.c:1675 [rfcomm]rfcomm_recv_data =_ "session %p state %ld dlci %d pf %d\012"
    net/bluetooth/rfcomm/core.c:1226 [rfcomm]rfcomm_recv_dm =_ "session %p state %ld dlci %d\012"
    net/bluetooth/rfcomm/core.c:1172 [rfcomm]rfcomm_recv_ua =_ "session %p state %ld dlci %d\012"
    net/bluetooth/rfcomm/core.c:1256 [rfcomm]rfcomm_recv_disc =_ "session %p state %ld dlci %d\012"
    net/bluetooth/rfcomm/core.c:885 [rfcomm]rfcomm_send_dm =_ "%p dlci %d\012"
    net/bluetooth/rfcomm/core.c:1777 [rfcomm]rfcomm_process_connect =_ "session %p state %ld\012"
    net/bluetooth/rfcomm/core.c:1332 [rfcomm]rfcomm_recv_sabm =_ "session %p state %ld dlci %d\012"
    net/bluetooth/rfcomm/core.c:1910 [rfcomm]rfcomm_process_rx =_ "session %p state %ld qlen %d\012"
    net/bluetooth/rfcomm/core.c:717 [rfcomm]rfcomm_session_close =_ "session %p state %ld err %d\012"
    net/bluetooth/rfcomm/core.c:821 [rfcomm]rfcomm_send_sabm =_ "%p dlci %d\012"
    net/bluetooth/rfcomm/core.c:1966 [rfcomm]rfcomm_check_connection =_ "%p state %ld\012"
    net/bluetooth/rfcomm/core.c:1940 [rfcomm]rfcomm_accept_connection =_ "session %p\012"
    net/bluetooth/rfcomm/core.c:2092 [rfcomm]rfcomm_run =_ "\012"
    net/bluetooth/rfcomm/core.c:1034 [rfcomm]rfcomm_send_msc =_ "%p cr %d v24 0x%x\012"
    net/bluetooth/rfcomm/core.c:835 [rfcomm]rfcomm_send_ua =_ "%p dlci %d\012"
    net/bluetooth/rfcomm/core.c:1291 [rfcomm]rfcomm_dlc_accept =_ "dlc %p\012"
    net/bluetooth/rfcomm/core.c:975 [rfcomm]rfcomm_send_rpn =_ "%p cr %d dlci %d bit_r 0x%x data_b 0x%x stop_b 0x%x parity 0x%x flwc_s 0x%x xon_c 0x%x xoff_c 0x%x p_mask 0x%x\012"
    net/bluetooth/rfcomm/core.c:637 [rfcomm]rfcomm_dlc_get_modem_status =_ "dlc %p state %ld v24_sig 0x%x\012"
    net/bluetooth/rfcomm/core.c:619 [rfcomm]rfcomm_dlc_set_modem_status =_ "dlc %p state %ld v24_sig 0x%x\012"
    net/bluetooth/rfcomm/core.c:602 [rfcomm]__rfcomm_dlc_unthrottle =_ "dlc %p state %ld\012"
    net/bluetooth/rfcomm/core.c:591 [rfcomm]__rfcomm_dlc_throttle =_ "dlc %p state %ld\012"
    net/bluetooth/rfcomm/core.c:579 [rfcomm]rfcomm_dlc_send_noerror =_ "dlc %p mtu %d len %d\012"
    net/bluetooth/rfcomm/core.c:562 [rfcomm]rfcomm_dlc_send =_ "dlc %p mtu %d len %d\012"
    net/bluetooth/rfcomm/core.c:248 [rfcomm]rfcomm_session_set_timer =_ "session %p state %ld timeout %ld\012"
    net/bluetooth/rfcomm/core.c:345 [rfcomm]rfcomm_dlc_unlink =_ "dlc %p refcnt %d session %p\012"
    net/bluetooth/rfcomm/core.c:282 [rfcomm]rfcomm_dlc_clear_timer =_ "dlc %p state %ld\012"
    net/bluetooth/rfcomm/core.c:864 [rfcomm]rfcomm_queue_disc =_ "dlc %p dlci %d\012"
    net/bluetooth/rfcomm/core.c:812 [rfcomm]rfcomm_send_cmd =_ "%p cmd %u\012"
    net/bluetooth/rfcomm/core.c:849 [rfcomm]rfcomm_send_disc =_ "%p dlci %d\012"
    net/bluetooth/rfcomm/core.c:458 [rfcomm]__rfcomm_dlc_close =_ "dlc %p state %ld dlci %d err %d session %p\012"
    net/bluetooth/rfcomm/core.c:508 [rfcomm]rfcomm_dlc_close =_ "dlc %p state %ld dlci %d err %d\012"
    net/bluetooth/rfcomm/core.c:274 [rfcomm]rfcomm_dlc_set_timer =_ "dlc %p state %ld timeout %ld\012"
    net/bluetooth/rfcomm/core.c:803 [rfcomm]rfcomm_send_frame =_ "session %p len %d\012"
    net/bluetooth/rfcomm/core.c:927 [rfcomm]rfcomm_send_pn =_ "%p cr %d dlci %d mtu %d\012"
    net/bluetooth/rfcomm/core.c:333 [rfcomm]rfcomm_dlc_link =_ "dlc %p session %p\012"
    net/bluetooth/rfcomm/core.c:255 [rfcomm]rfcomm_session_clear_timer =_ "session %p state %ld\012"
    net/bluetooth/rfcomm/core.c:679 [rfcomm]rfcomm_session_del =_ "session %p state %ld\012"
    net/bluetooth/rfcomm/core.c:240 [rfcomm]rfcomm_session_timeout =_ "session %p state %ld\012"
    net/bluetooth/rfcomm/core.c:651 [rfcomm]rfcomm_session_add =_ "session %p sock %p\012"
    net/bluetooth/rfcomm/core.c:193 [rfcomm]rfcomm_l2data_ready =_ "%p\012"
    net/bluetooth/rfcomm/core.c:187 [rfcomm]rfcomm_l2state_change =_ "%p state %d\012"
    net/bluetooth/rfcomm/core.c:201 [rfcomm]rfcomm_l2sock_create =_ "\012"
    net/bluetooth/rfcomm/core.c:740 [rfcomm]rfcomm_session_create =_ "%pMR -> %pMR\012"
    net/bluetooth/rfcomm/core.c:378 [rfcomm]__rfcomm_dlc_open =_ "dlc %p state %ld %pMR -> %pMR channel %d\012"
    net/bluetooth/rfcomm/core.c:325 [rfcomm]rfcomm_dlc_free =_ "%p\012"
    net/bluetooth/rfcomm/core.c:290 [rfcomm]rfcomm_dlc_clear_state =_ "%p\012"
    net/bluetooth/rfcomm/core.c:265 [rfcomm]rfcomm_dlc_timeout =_ "dlc %p state %ld\012"
    net/bluetooth/rfcomm/core.c:318 [rfcomm]rfcomm_dlc_alloc =_ "%p\012"
    net/bluetooth/rfcomm/sock.c:934 [rfcomm]rfcomm_sock_release =_ "sock %p, sk %p\012"
    net/bluetooth/rfcomm/sock.c:342 [rfcomm]rfcomm_sock_bind =_ "sk %p %pMR\012"
    net/bluetooth/rfcomm/sock.c:384 [rfcomm]rfcomm_sock_connect =_ "sk %p\012"
    net/bluetooth/rfcomm/sock.c:523 [rfcomm]rfcomm_sock_accept =_ "new socket %p\012"
    net/bluetooth/rfcomm/sock.c:485 [rfcomm]rfcomm_sock_accept =_ "sk %p timeo %ld\012"
    net/bluetooth/rfcomm/sock.c:535 [rfcomm]rfcomm_sock_getname =_ "sock %p, sk %p\012"
    net/bluetooth/rfcomm/sock.c:889 [rfcomm]rfcomm_sock_ioctl =_ "sk %p cmd %x arg %lx\012"
    net/bluetooth/rfcomm/sock.c:425 [rfcomm]rfcomm_sock_listen =_ "sk %p backlog %d\012"
    net/bluetooth/rfcomm/sock.c:179 [rfcomm]rfcomm_sock_cleanup_listen =_ "parent %p\012"
    net/bluetooth/rfcomm/sock.c:211 [rfcomm]__rfcomm_sock_close =_ "sk %p state %d socket %p\012"
    net/bluetooth/rfcomm/sock.c:911 [rfcomm]rfcomm_sock_shutdown =_ "sock %p, sk %p\012"
    net/bluetooth/rfcomm/sock.c:650 [rfcomm]rfcomm_sock_setsockopt_old =_ "sk %p\012"
    net/bluetooth/rfcomm/sock.c:693 [rfcomm]rfcomm_sock_setsockopt =_ "sk %p\012"
    net/bluetooth/rfcomm/sock.c:762 [rfcomm]rfcomm_sock_getsockopt_old =_ "sk %p\012"
    net/bluetooth/rfcomm/sock.c:834 [rfcomm]rfcomm_sock_getsockopt =_ "sk %p\012"
    net/bluetooth/rfcomm/sock.c:570 [rfcomm]rfcomm_sock_sendmsg =_ "sock %p, sk %p\012"
    net/bluetooth/rfcomm/sock.c:318 [rfcomm]rfcomm_sock_create =_ "sock %p\012"
    net/bluetooth/rfcomm/sock.c:244 [rfcomm]rfcomm_sock_init =_ "sk %p\012"
    net/bluetooth/rfcomm/sock.c:199 [rfcomm]rfcomm_sock_kill =_ "sk %p state %d refcnt %d\012"
    net/bluetooth/rfcomm/sock.c:71 [rfcomm]rfcomm_sk_state_change =_ "dlc %p state %ld err %d\012"
    net/bluetooth/rfcomm/sock.c:159 [rfcomm]rfcomm_sock_destruct =_ "sk %p dlc %p\012"
    net/bluetooth/rfcomm/sock.c:309 [rfcomm]rfcomm_sock_alloc =_ "sk %p\012"
    net/bluetooth/rfcomm/sock.c:969 [rfcomm]rfcomm_connect_ind =_ "backlog full %d\012"
    net/bluetooth/rfcomm/sock.c:956 [rfcomm]rfcomm_connect_ind =_ "session %p channel %d\012"
    net/bluetooth/rfcomm/tty.c:667 [rfcomm]rfcomm_tty_copy_pending =_ "dev %p\012"
    net/bluetooth/rfcomm/tty.c:755 [rfcomm]rfcomm_tty_open =_ "dev %p dst %pMR channel %d opened %d\012"
    net/bluetooth/rfcomm/tty.c:752 [rfcomm]rfcomm_tty_open =_ "tty %p id %d\012"
    net/bluetooth/rfcomm/tty.c:778 [rfcomm]rfcomm_tty_close =_ "tty %p dev %p dlc %p opened %d\012"
    net/bluetooth/rfcomm/tty.c:790 [rfcomm]rfcomm_tty_write =_ "tty %p count %d\012"
    net/bluetooth/rfcomm/tty.c:820 [rfcomm]rfcomm_tty_write_room =_ "tty %p room %d\012"
    net/bluetooth/rfcomm/tty.c:1031 [rfcomm]rfcomm_tty_chars_in_buffer =_ "tty %p dev %p\012"
    net/bluetooth/rfcomm/tty.c:839 [rfcomm]rfcomm_tty_ioctl =_ "TIOCMIWAIT\012"
    net/bluetooth/rfcomm/tty.c:835 [rfcomm]rfcomm_tty_ioctl =_ "TCSETS is not supported\012"
    net/bluetooth/rfcomm/tty.c:831 [rfcomm]rfcomm_tty_ioctl =_ "TCGETS is not supported\012"
    net/bluetooth/rfcomm/tty.c:827 [rfcomm]rfcomm_tty_ioctl =_ "tty %p cmd 0x%02x\012"
    net/bluetooth/rfcomm/tty.c:926 [rfcomm]rfcomm_tty_set_termios =_ "XON default\012"
    net/bluetooth/rfcomm/tty.c:922 [rfcomm]rfcomm_tty_set_termios =_ "XON custom\012"
    net/bluetooth/rfcomm/tty.c:917 [rfcomm]rfcomm_tty_set_termios =_ "XOFF default\012"
    net/bluetooth/rfcomm/tty.c:913 [rfcomm]rfcomm_tty_set_termios =_ "XOFF custom\012"
    net/bluetooth/rfcomm/tty.c:907 [rfcomm]rfcomm_tty_set_termios =_ "Parity is OFF\012"
    net/bluetooth/rfcomm/tty.c:903 [rfcomm]rfcomm_tty_set_termios =_ "Parity is EVEN\012"
    net/bluetooth/rfcomm/tty.c:900 [rfcomm]rfcomm_tty_set_termios =_ "Parity is ODD\012"
    net/bluetooth/rfcomm/tty.c:894 [rfcomm]rfcomm_tty_set_termios =_ "Parity change detected.\012"
    net/bluetooth/rfcomm/tty.c:888 [rfcomm]rfcomm_tty_set_termios =_ "Turning off CRTSCTS unsupported\012"
    net/bluetooth/rfcomm/tty.c:881 [rfcomm]rfcomm_tty_set_termios =_ "tty %p termios %p\012"
    net/bluetooth/rfcomm/tty.c:1013 [rfcomm]rfcomm_tty_throttle =_ "tty %p dev %p\012"
    net/bluetooth/rfcomm/tty.c:1022 [rfcomm]rfcomm_tty_unthrottle =_ "tty %p dev %p\012"
    net/bluetooth/rfcomm/tty.c:1069 [rfcomm]rfcomm_tty_hangup =_ "tty %p dev %p\012"
    net/bluetooth/rfcomm/tty.c:1046 [rfcomm]rfcomm_tty_flush_buffer =_ "tty %p dev %p\012"
    net/bluetooth/rfcomm/tty.c:1062 [rfcomm]rfcomm_tty_wait_until_sent =_ "tty %p timeout %d\012"
    net/bluetooth/rfcomm/tty.c:1057 [rfcomm]rfcomm_tty_send_xchar =_ "tty %p ch %c\012"
    net/bluetooth/rfcomm/tty.c:1078 [rfcomm]rfcomm_tty_tiocmget =_ "tty %p dev %p\012"
    net/bluetooth/rfcomm/tty.c:1089 [rfcomm]rfcomm_tty_tiocmset =_ "tty %p dev %p set 0x%02x clear 0x%02x\012"
    net/bluetooth/rfcomm/tty.c:560 [rfcomm]rfcomm_get_dev_info =_ "\012"
    net/bluetooth/rfcomm/tty.c:511 [rfcomm]rfcomm_get_dev_list =_ "\012"
    net/bluetooth/rfcomm/tty.c:447 [rfcomm]__rfcomm_release_dev =_ "dev_id %d flags 0x%x\012"
    include/net/bluetooth/hci_core.h:861 [rfcomm]hci_dev_put =_ "%s orig refcnt %d\012"
    net/bluetooth/rfcomm/tty.c:649 [rfcomm]rfcomm_dev_modem_status =_ "dlc %p dev %p v24_sig 0x%02x\012"
    net/bluetooth/rfcomm/tty.c:86 [rfcomm]rfcomm_dev_destruct =_ "dev %p dlc %p\012"
    net/bluetooth/rfcomm/tty.c:618 [rfcomm]rfcomm_dev_data_ready =_ "dlc %p len %d\012"
    net/bluetooth/rfcomm/tty.c:632 [rfcomm]rfcomm_dev_state_change =_ "dlc %p dev %p err %d\012"
    net/bluetooth/rfcomm/tty.c:322 [rfcomm]rfcomm_dev_add =_ "id %d channel %d\012"
    net/bluetooth/rfcomm/tty.c:399 [rfcomm]__rfcomm_create_dev =_ "sk %p dev_id %d flags 0x%x\012"
    net/bluetooth/rfcomm/tty.c:584 [rfcomm]rfcomm_dev_ioctl =_ "cmd %d arg %p\012"
    net/bluetooth/bnep/core.c:618 [bnep]bnep_del_connection =_ "\012"
    net/bluetooth/bnep/core.c:52 [bnep]__bnep_get_session =_ "\012"
    net/bluetooth/bnep/core.c:397 [bnep]bnep_tx_frame =_ "skb %p dev %p type %d\012"
    net/bluetooth/bnep/core.c:262 [bnep]bnep_rx_extension =_ "type 0x%x len %d\012"
    net/bluetooth/bnep/core.c:200 [bnep]bnep_ctrl_set_mcfilter =_ "mc filter hash 0x%llx\012"
    net/bluetooth/bnep/core.c:185 [bnep]bnep_ctrl_set_mcfilter =_ "mc filter %pMR -> %pMR\012"
    net/bluetooth/bnep/core.c:163 [bnep]bnep_ctrl_set_mcfilter =_ "filter len %d\012"
    net/bluetooth/bnep/core.c:130 [bnep]bnep_ctrl_set_netfilter =_ "proto filter start %d end %d\012"
    net/bluetooth/bnep/core.c:117 [bnep]bnep_ctrl_set_netfilter =_ "filter len %d\012"
    net/bluetooth/bnep/core.c:456 [bnep]bnep_session =_ "\012"
    net/bluetooth/bnep/core.c:534 [bnep]bnep_add_connection =_ "\012"
    net/bluetooth/bnep/sock.c:40 [bnep]bnep_sock_release =_ "sock %p sk %p\012"
    net/bluetooth/bnep/sock.c:62 [bnep]bnep_sock_ioctl =_ "cmd %x arg %lx\012"
    net/bluetooth/bnep/sock.c:193 [bnep]bnep_sock_create =_ "sock %p\012"
    net/bluetooth/bnep/netdev.c:159 [bnep]bnep_net_proto_filter =_ "BNEP: filtered skb %p, proto 0x%.4x\012"
    net/bluetooth/bnep/netdev.c:196 [bnep]bnep_net_xmit =_ "tx queue is full\012"
    net/bluetooth/bnep/netdev.c:170 [bnep]bnep_net_xmit =_ "skb %p, dev %p\012"
    net/bluetooth/bnep/netdev.c:59 [bnep]bnep_net_set_mc_list =_ "%s mc_count %d\012"
    net/bluetooth/bnep/netdev.c:111 [bnep]bnep_net_set_mac_addr =_ "%s\012"
    net/bluetooth/bnep/netdev.c:117 [bnep]bnep_net_timeout =_ "net_timeout\012"
    drivers/char/ppdev.c:119 [ppdev]pp_read =_ "ppdev%x: claim the port first\012"
    drivers/char/ppdev.c:202 [ppdev]pp_write =_ "ppdev%x: claim the port first\012"
    drivers/char/ppdev.c:310 [ppdev]register_device =_ "%s: registered pardevice\012"
    drivers/char/ppdev.c:621 [ppdev]pp_do_ioctl =_ "ppdev%x: What? (cmd=0x%x)\012"
    drivers/char/ppdev.c:488 [ppdev]pp_do_ioctl =_ "ppdev%x: claim the port first\012"
    drivers/char/ppdev.c:376 [ppdev]pp_do_ioctl =_ "ppdev%x: too late for PPEXCL; already registered\012"
    drivers/char/ppdev.c:340 [ppdev]pp_do_ioctl =_ "ppdev%x: you've already got it!\012"
    drivers/char/ppdev.c:717 [ppdev]pp_release =_ "ppdev%x: unregistered pardevice\012"
    drivers/char/ppdev.c:708 [ppdev]pp_release =_ "ppdev%x: released pardevice because user-space forgot\012"
    drivers/char/ppdev.c:694 [ppdev]pp_release =_ "ppdev%x: negotiated back to compatibility mode because user-space forgot\012"
    drivers/misc/vmw_vmci/vmci_guest.c:195 [vmw_vmci]vmci_check_host_caps =_ "%s: Host capability check: %s\012"
    drivers/misc/vmw_vmci/vmci_guest.c:319 [vmw_vmci]vmci_dispatch_dgs =_ "Failed to receive datagram (size=%u bytes)\012"
    drivers/misc/vmw_vmci/vmci_guest.c:305 [vmw_vmci]vmci_dispatch_dgs =_ "Datagram with resource (ID=0x%x) failed (err=%d)\012"
    drivers/misc/vmw_vmci/vmci_guest.c:364 [vmw_vmci]vmci_process_bitmap =_ "No bitmap present in %s\012"
    drivers/misc/vmw_vmci/vmci_guest.c:636 [vmw_vmci]vmci_guest_probe_device =_ "Registered device\012"
    drivers/misc/vmw_vmci/vmci_guest.c:466 [vmw_vmci]vmci_guest_probe_device =_ "Probing for vmci/PCI guest device\012"
    drivers/misc/vmw_vmci/vmci_guest.c:714 [vmw_vmci]vmci_guest_remove_device =_ "Resetting vmci device\012"
    drivers/misc/vmw_vmci/vmci_guest.c:697 [vmw_vmci]vmci_guest_remove_device =_ "Removing device\012"
    drivers/misc/vmw_vmci/vmci_host.c:1038 [vmw_vmci]vmci_host_exit =_ "VMCI host driver module unloaded\012"
    drivers/i2c/busses/i2c-piix4.c:432 [i2c_piix4]piix4_transaction =_ "Transaction (post): CNT=%02x, CMD=%02x, ADD=%02x, DAT0=%02x, DAT1=%02x\012"
    drivers/i2c/busses/i2c-piix4.c:419 [i2c_piix4]piix4_transaction =_ "Error: no response!\012"
    drivers/i2c/busses/i2c-piix4.c:413 [i2c_piix4]piix4_transaction =_ "Bus collision! SMBus may be locked until next hard reset. (sorry!)\012"
    drivers/i2c/busses/i2c-piix4.c:382 [i2c_piix4]piix4_transaction =_ "Successful!\012"
    drivers/i2c/busses/i2c-piix4.c:376 [i2c_piix4]piix4_transaction =_ "SMBus busy (%02x). Resetting...\012"
    drivers/i2c/busses/i2c-piix4.c:371 [i2c_piix4]piix4_transaction =_ "Transaction (pre): CNT=%02x, CMD=%02x, ADD=%02x, DAT0=%02x, DAT1=%02x\012"
    drivers/i2c/busses/i2c-piix4.c:311 [i2c_piix4]piix4_setup_sb800 =_ "Using SMI# for SMBus\012"
    drivers/i2c/busses/i2c-piix4.c:309 [i2c_piix4]piix4_setup_sb800 =_ "Using IRQ for SMBus\012"
    drivers/i2c/busses/i2c-piix4.c:340 [i2c_piix4]piix4_setup_aux =_ "Auxiliary SMBus base address uninitialized\012"
    drivers/i2c/busses/i2c-piix4.c:333 [i2c_piix4]piix4_setup_aux =_ "Auxiliary SMBus controller not enabled\012"
    drivers/i2c/busses/i2c-piix4.c:215 [i2c_piix4]piix4_setup =_ "Using SMI# for SMBus\012"
    drivers/i2c/busses/i2c-piix4.c:213 [i2c_piix4]piix4_setup =_ "Using IRQ for SMBus\012"
    drivers/gpu/drm/ttm/ttm_page_alloc_dma.c:1119 [ttm]ttm_dma_page_alloc_fini =_ "(%s:%d) Freeing.\012"
    drivers/gpu/drm/ttm/ttm_page_alloc_dma.c:1044 [ttm]ttm_dma_pool_shrink_scan =_ "%s: (%s:%d) Asked to shrink %d, have %d more to go\012"
    drivers/gpu/drm/ttm/ttm_page_alloc_dma.c:736 [ttm]ttm_dma_pool_alloc_new_pages =_ "%s: (%s:%d) Getting %d pages\012"
    drivers/input/serio/serio_raw.c:301 [serio_raw]serio_raw_connect =_ "can't allocate memory for a device\012"
    drivers/input/serio/serio_raw.c:366 [serio_raw]serio_raw_reconnect =_ "reconnect request, but serio is disconnected, ignoring...\012"
    drivers/hid/hid-input.c:421 [hid]hidinput_setup_battery =_ "device %x:%x:%x %d quirks %d\012"
    drivers/hid/usbhid/hid-core.c:135 [usbhid]hid_reset =_ "resetting device\012"
    drivers/hid/usbhid/hid-core.c:129 [usbhid]hid_reset =_ "clear-halt failed: %d\012"
    drivers/hid/usbhid/hid-core.c:122 [usbhid]hid_reset =_ "clear halt\012"
    drivers/hid/usbhid/hid-core.c:108 [usbhid]hid_retry_timeout =_ "retrying intr urb\012"
    drivers/hid/usbhid/hid-core.c:1561 [usbhid]hid_suspend =_ "suspend\012"
    drivers/hid/usbhid/hid-core.c:1579 [usbhid]hid_resume =_ "resume status %d\012"
    drivers/hid/usbhid/hid-core.c:238 [usbhid]usbhid_restart_ctrl_queue =_ "Kicking head %d tail %d"
    drivers/hid/usbhid/hid-core.c:199 [usbhid]usbhid_restart_out_queue =_ "Kicking head %d tail %d"
    drivers/hid/usbhid/hid-pidff.c:223 [usbhid]pidff_set =_ "calculated from %d to %d\012"
    drivers/hid/usbhid/hid-pidff.c:1183 [usbhid]pidff_reset =_ "pid_pool requested again\012"
    drivers/hid/usbhid/hid-pidff.c:793 [usbhid]pidff_find_fields =_ "failed to locate %d\012"
    drivers/hid/usbhid/hid-pidff.c:781 [usbhid]pidff_find_fields =_ "found %d at %d->%d\012"
    drivers/hid/usbhid/hid-pidff.c:774 [usbhid]pidff_find_fields =_ "maxusage and report_count do not match, skipping\012"
    drivers/hid/usbhid/hid-pidff.c:949 [usbhid]pidff_find_special_fields =_ "search done\012"
    drivers/hid/usbhid/hid-pidff.c:928 [usbhid]pidff_find_special_fields =_ "finding special fields\012"
    drivers/hid/usbhid/hid-pidff.c:866 [usbhid]pidff_reports_ok =_ "%d missing\012"
    drivers/hid/usbhid/hid-pidff.c:851 [usbhid]pidff_find_reports =_ "found usage 0x%02x from collection array\012"
    drivers/hid/usbhid/hid-pidff.c:831 [usbhid]pidff_find_reports =_ "found usage 0x%02x from field->logical\012"
    drivers/hid/usbhid/hid-pidff.c:492 [usbhid]pidff_request_effect_upload =_ "not enough memory free: %d bytes\012"
    drivers/hid/usbhid/hid-pidff.c:485 [usbhid]pidff_request_effect_upload =_ "device reported free memory: %d bytes\012"
    drivers/hid/usbhid/hid-pidff.c:477 [usbhid]pidff_request_effect_upload =_ "pid_block_load requested\012"
    drivers/hid/usbhid/hid-pidff.c:470 [usbhid]pidff_request_effect_upload =_ "create_new_effect sent, type: %d\012"
    drivers/hid/usbhid/hid-pidff.c:264 [usbhid]pidff_set_envelope_report =_ "attack %u => %d\012"
    drivers/hid/usbhid/hid-pidff.c:238 [usbhid]pidff_set_signed =_ "calculated from %d to %d\012"
    drivers/hid/usbhid/hid-pidff.c:708 [usbhid]pidff_upload_effect =_ "uploaded\012"
    drivers/hid/usbhid/hid-pidff.c:551 [usbhid]pidff_erase_effect =_ "starting to erase %d/%d\012"
    drivers/hid/usbhid/hid-pidff.c:1295 [usbhid]hid_pidff_init =_ "device memory size is %d bytes\012"
    drivers/hid/usbhid/hid-pidff.c:1291 [usbhid]hid_pidff_init =_ "max simultaneous effects is %d\012"
    drivers/hid/usbhid/hid-pidff.c:1284 [usbhid]hid_pidff_init =_ "max effects is %d\012"
    drivers/hid/usbhid/hid-pidff.c:1259 [usbhid]hid_pidff_init =_ "reports not ok, aborting\012"
    drivers/hid/usbhid/hid-pidff.c:1245 [usbhid]hid_pidff_init =_ "not a PID device, no output report\012"
    drivers/hid/usbhid/hid-pidff.c:1242 [usbhid]hid_pidff_init =_ "starting pid init\012"
    drivers/misc/vmw_balloon.c:271 [vmw_balloon]vmballoon_send_guest_id =_ "%s - failed, hv returns %ld\012"
    drivers/misc/vmw_balloon.c:234 [vmw_balloon]vmballoon_send_start =_ "%s - failed, hv returns %ld\012"
    drivers/misc/vmw_balloon.c:358 [vmw_balloon]vmballoon_send_unlock_page =_ "%s - ppn %lx, hv returns %ld\012"
    drivers/misc/vmw_balloon.c:628 [vmw_balloon]vmballoon_deflate =_ "%s - goal: %d, rate: %d\012"
    drivers/misc/vmw_balloon.c:623 [vmw_balloon]vmballoon_deflate =_ "%s - size: %d, target %d\012"
    drivers/misc/vmw_balloon.c:334 [vmw_balloon]vmballoon_send_lock_page =_ "%s - ppn %lx, hv returns %ld\012"
    drivers/misc/vmw_balloon.c:543 [vmw_balloon]vmballoon_inflate =_ "%s - goal: %d, no-sleep rate: %d, sleep rate: %d\012"
    drivers/misc/vmw_balloon.c:517 [vmw_balloon]vmballoon_inflate =_ "%s - size: %d, target %d\012"
    drivers/misc/vmw_balloon.c:308 [vmw_balloon]vmballoon_send_get_target =_ "%s - failed, hv returns %ld\012"
    sound/core/init.c:120 [snd]init_info_for_card =_ "unable to create card entry\012"
    sound/core/init.c:116 [snd]init_info_for_card =_ "unable to create card info\012"
    sound/core/control.c:1437 [snd]snd_ctl_ioctl =_ "unknown ioctl = 0x%x\012"
    sound/core/device.c:131 [snd]snd_device_free =_ "device free %p (from %pF), not found\012"
    sound/core/timer.c:244 [snd_timer]snd_timer_open =_ "ALSA: timer: invalid slave class %i\012"
    sound/core/seq/seq_clientmgr.c:2212 [snd_seq]snd_seq_do_ioctl =_ "ALSA: seq unknown ioctl() 0x%x (type='%c', number=0x%02x)\012"
    sound/core/seq/seq_clientmgr.c:811 [snd_seq]snd_seq_deliver_event =_ "ALSA: seq: too long delivery path (%d:%d->%d:%d)\012"
    sound/core/seq/seq_clientmgr.c:127 [snd_seq]clientptr =_ "ALSA: seq: oops. Trying to get pointer to client %d\012"
    sound/core/seq/seq_clientmgr.c:140 [snd_seq]snd_seq_client_use_ptr =_ "ALSA: seq: oops. Trying to get pointer to client %d\012"
    sound/core/seq/seq_memory.c:467 [snd_seq]snd_seq_pool_new =_ "ALSA: seq: malloc failed for pool\012"
    sound/core/seq/seq_memory.c:391 [snd_seq]snd_seq_pool_init =_ "ALSA: seq: malloc for sequencer events failed\012"
    sound/core/seq/seq_memory.c:239 [snd_seq]snd_seq_cell_alloc =_ "ALSA: seq: pool is not initialized\012"
    sound/core/seq/seq_queue.c:115 [snd_seq]queue_new =_ "ALSA: seq: malloc failed for snd_seq_queue_new()\012"
    sound/core/seq/seq_fifo.c:37 [snd_seq]snd_seq_fifo_new =_ "ALSA: seq: malloc failed for snd_seq_fifo_new() \012"
    sound/core/seq/seq_prioq.c:262 [snd_seq]snd_seq_prioq_cell_peek =_ "ALSA: seq: snd_seq_prioq_cell_in() called with NULL prioq\012"
    sound/core/seq/seq_prioq.c:251 [snd_seq]snd_seq_prioq_avail =_ "ALSA: seq: snd_seq_prioq_cell_in() called with NULL prioq\012"
    sound/core/seq/seq_prioq.c:226 [snd_seq]snd_seq_prioq_cell_out =_ "ALSA: seq: snd_seq_prioq_cell_in() called with NULL prioq\012"
    sound/core/seq/seq_prioq.c:82 [snd_seq]snd_seq_prioq_delete =_ "ALSA: seq: snd_seq_prioq_delete() called with NULL prioq\012"
    sound/core/seq/seq_prioq.c:63 [snd_seq]snd_seq_prioq_new =_ "ALSA: seq: malloc failed for snd_seq_prioq_new()\012"
    sound/core/seq/seq_timer.c:255 [snd_seq]snd_seq_timer_set_skew =_ "ALSA: seq: invalid skew base 0x%x\012"
    sound/core/seq/seq_timer.c:202 [snd_seq]snd_seq_timer_set_ppq =_ "ALSA: seq: cannot change ppq of a running timer\012"
    sound/core/seq/seq_timer.c:81 [snd_seq]snd_seq_timer_delete =_ "ALSA: seq: snd_seq_timer_delete() called with NULL timer\012"
    sound/core/seq/seq_timer.c:60 [snd_seq]snd_seq_timer_new =_ "ALSA: seq: malloc failed for snd_seq_timer_new() \012"
    sound/core/seq/seq_ports.c:145 [snd_seq]snd_seq_create_port =_ "ALSA: seq: malloc failed for registering client port\012"
    sound/core/rawmidi.c:824 [snd_rawmidi]snd_rawmidi_ioctl =_ "rawmidi: unknown command = 0x%x\012"
    sound/core/rawmidi.c:1142 [snd_rawmidi]snd_rawmidi_transmit_ack =_ "snd_rawmidi_transmit_ack: output is not active!!!\012"
    sound/core/rawmidi.c:1090 [snd_rawmidi]snd_rawmidi_transmit_peek =_ "snd_rawmidi_transmit_peek: output is not active!!!\012"
    sound/core/rawmidi.c:1057 [snd_rawmidi]snd_rawmidi_transmit_empty =_ "snd_rawmidi_transmit_empty: output is not active!!!\012"
    sound/core/rawmidi.c:895 [snd_rawmidi]snd_rawmidi_receive =_ "snd_rawmidi_receive: input is not active!!!\012"
    sound/core/seq/seq_midi.c:192 [snd_seq_midi]midisynth_subscribe =_ "ALSA: seq_midi: midi input open failed!!!\012"
    sound/core/seq/seq_midi.c:234 [snd_seq_midi]midisynth_use =_ "ALSA: seq_midi: midi output open failed!!!\012"
    sound/core/seq/seq_midi.c:148 [snd_seq_midi]event_process_midi =_ "ALSA: seq_midi: invalid sysex event flags = 0x%x\012"
    sound/core/pcm.c:349 [snd_pcm]snd_pcm_proc_info_read =_ "snd_pcm_proc_info_read: cannot malloc\012"
    sound/core/pcm_native.c:1689 [snd_pcm]snd_pcm_drain =_ "playback drain error (DMA or IRQ trouble?)\012"
    sound/core/pcm_native.c:2757 [snd_pcm]snd_pcm_common_ioctl1 =_ "unknown ioctl = 0x%x\012"
    sound/core/pcm_native.c:2227 [snd_pcm]snd_pcm_open_substream =_ "snd_pcm_hw_constraints_complete failed\012"
    sound/core/pcm_native.c:2216 [snd_pcm]snd_pcm_open_substream =_ "snd_pcm_hw_constraints_init failed\012"
    sound/core/pcm_lib.c:1851 [snd_pcm]wait_for_avail =_ "%s write error (DMA or IRQ trouble?)\012"
    sound/pci/ac97/ac97_codec.c:2929 [snd_ac97_codec]snd_ac97_tune_hardware =_ "ac97 quirk for %s (%04x:%04x)\012"
    sound/pci/ac97/ac97_patch.c:3413 [snd_ac97_codec]snd_ac97_add_vmaster =_ "Cannot find slave %s, skipped\012"
    sound/pci/ac97/ac97_pcm.c:631 [snd_ac97_codec]snd_ac97_pcm_open =_ "setting ac97 reg 0x%x to rate %d\012"
    drivers/hwmon/coretemp.c:374 [coretemp]get_tjmax =_ "TjMax is %d degrees C\012"